diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 050fdcd338..0000000000 --- a/.eslintignore +++ /dev/null @@ -1,4 +0,0 @@ -node_modules -packages/turf/turf.js -packages/turf/turf.min.js -packages/turf/test.example.js diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 6c853c6c1a..0000000000 --- a/.eslintrc.js +++ /dev/null @@ -1,62 +0,0 @@ -const rules = { - "@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }], - - "@typescript-eslint/explicit-module-boundary-types": "off", - "@typescript-eslint/no-explicit-any": "off", - "@typescript-eslint/no-non-null-assertion": "off", - "@typescript-eslint/no-var-requires": "off", - "no-constant-condition": "off", - "no-redeclare": "off", - "no-var": "off", - "prefer-const": "off", -}; - -module.exports = { - root: true, - ignorePatterns: ["**/dist/**"], - parser: "@typescript-eslint/parser", - plugins: ["@typescript-eslint"], - extends: [ - "eslint:recommended", - "plugin:@typescript-eslint/recommended", - "plugin:prettier/recommended", - ], - parserOptions: { - ecmaVersion: 6, - sourceType: "module", - }, - env: { es6: true, node: true }, - rules, - - overrides: [ - { - files: ["packages/*/types.ts"], - rules: { - // these are meant to test the typescript typings, unused variables are expected - "@typescript-eslint/no-unused-vars": "off", - }, - }, - { - files: [ - ".eslintrc.js", - "packages/*/bench.js", - "packages/*/test.js", - "packages/turf/rollup.config.js", - "scripts/check-dependencies.js", - ], - env: { - node: true, - }, - }, - { - files: [ - // a few files use browser global variables - "packages/turf-isobands/lib/marchingsquares-isobands.js", - "packages/turf-isolines/lib/marchingsquares-isocontours.js", - ], - env: { - browser: true, - }, - }, - ], -}; diff --git a/.monorepolint.config.mjs b/.monorepolint.config.mjs index d815e4f409..dba15d73c9 100644 --- a/.monorepolint.config.mjs +++ b/.monorepolint.config.mjs @@ -221,8 +221,9 @@ export default { devDependencies: { benchmark: "^2.1.4", "npm-run-all": "^4.1.5", - tape: "^5.7.2", - tsx: "^4.6.2", + tape: "^5.9.0", + tsup: "^8.3.5", + tsx: "^4.19.2", }, }, includePackages: [...TS_PACKAGES, ...JS_PACKAGES], @@ -231,26 +232,17 @@ export default { requireDependency({ options: { dependencies: { - tslib: "^2.6.2", + tslib: "^2.8.1", }, devDependencies: { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", typescript: "^5.5.4", }, }, includePackages: TS_PACKAGES, }), - requireDependency({ - options: { - devDependencies: { - rollup: "^3.29.5", - }, - }, - includePackages: [MAIN_PACKAGE], - }), - requireDependency({ options: { dependencies: { diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 0000000000..65716418d7 --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,89 @@ +import typescriptEslint from "@typescript-eslint/eslint-plugin"; +import globals from "globals"; +import tsParser from "@typescript-eslint/parser"; +import js from "@eslint/js"; +import tsEslint from "typescript-eslint"; +import prettierRecommended from "eslint-plugin-prettier/recommended"; + +export default tsEslint.config( + js.configs.recommended, + tsEslint.configs.recommended, + { + ignores: [ + "**/dist/**/*", + "**/node_modules", + "packages/turf/turf.js", + "packages/turf/turf.min.js", + "packages/turf/test.example.js", + ], + }, + { + plugins: { + "@typescript-eslint": typescriptEslint, + }, + + languageOptions: { + globals: { + ...globals.node, + }, + + parser: tsParser, + ecmaVersion: 6, + sourceType: "module", + }, + + rules: { + "@typescript-eslint/no-unused-vars": [ + "error", + { + argsIgnorePattern: "^_", + }, + ], + + "@typescript-eslint/explicit-module-boundary-types": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/no-var-requires": "off", + "no-constant-condition": "off", + "no-redeclare": "off", + "no-var": "off", + "prefer-const": "off", + }, + }, + { + files: ["packages/*/types.ts", "packages/*/test.ts"], + + rules: { + "@typescript-eslint/no-unused-vars": "off", + "@typescript-eslint/no-unused-expressions": "off", + }, + }, + { + files: [ + "**/.eslintrc.js", + "packages/*/bench.js", + "packages/*/test.js", + "packages/turf/rollup.config.js", + "scripts/check-dependencies.js", + ], + + languageOptions: { + globals: { + ...globals.node, + }, + }, + }, + { + files: [ + "packages/turf-isobands/lib/marchingsquares-isobands.js", + "packages/turf-isolines/lib/marchingsquares-isocontours.js", + ], + + languageOptions: { + globals: { + ...globals.browser, + }, + }, + }, + prettierRecommended +); diff --git a/package.json b/package.json index 0dffa5ad36..82e98d3e3b 100644 --- a/package.json +++ b/package.json @@ -29,13 +29,13 @@ }, "packageManager": "pnpm@8.15.8+sha512.d1a029e1a447ad90bc96cd58b0fad486d2993d531856396f7babf2d83eb1823bb83c5a3d0fc18f675b2d10321d49eb161fece36fe8134aa5823ecd215feed392", "devDependencies": { - "@monorepolint/cli": "0.5.0-alpha.132", - "@monorepolint/config": "0.5.0-alpha.132", - "@monorepolint/core": "0.5.0-alpha.132", - "@monorepolint/rules": "0.5.0-alpha.132", + "@eslint/eslintrc": "^3.2.0", + "@eslint/js": "^9.16.0", + "@monorepolint/cli": "0.5.0", + "@monorepolint/config": "0.5.0", + "@monorepolint/core": "0.5.0", + "@monorepolint/rules": "0.5.0", "@types/node": "18.11.9", - "@typescript-eslint/eslint-plugin": "^6.10.0", - "@typescript-eslint/parser": "^6.10.0", "acorn": "^7.4.1", "camelcase": "^8.0.0", "d3-queue": "*", @@ -43,24 +43,25 @@ "dependency-tree": "^11.0.0", "documentation": "^14.0.3", "es-check": "^7.1.1", - "eslint": "^8.53.0", - "eslint-config-prettier": "^9.0.0", - "eslint-plugin-prettier": "^5.0.1", + "eslint": "^9.16.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-prettier": "^5.2.1", "esm": "^3.2.25", "fs-extra": "^11.1.1", "glob": "^10.3.10", + "globals": "^15.13.0", "husky": "^9.0.0", - "lerna": "^8.1.7", + "lerna": "^8.1.9", "lint-staged": "^15.2.8", "load-json-file": "^7.0.1", "meow": "^12.1.1", "npm-run-all": "^4.1.5", "prettier": "^3.3.3", "progress": "^2.0.3", - "ts-node": "^9.0.0", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", + "typescript-eslint": "^8.17.0", "yamljs": "^0.3.0" } } diff --git a/packages/turf-along/package.json b/packages/turf-along/package.json index ac5ab3b40b..f642dedbad 100644 --- a/packages/turf-along/package.json +++ b/packages/turf-along/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -69,6 +69,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-angle/package.json b/packages/turf-angle/package.json index 02a97d006c..3d928d778f 100644 --- a/packages/turf-angle/package.json +++ b/packages/turf-angle/package.json @@ -56,14 +56,14 @@ "@turf/sector": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -73,6 +73,6 @@ "@turf/invariant": "workspace:^", "@turf/rhumb-bearing": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-area/package.json b/packages/turf-area/package.json index c25b824e8f..99754d751e 100644 --- a/packages/turf-area/package.json +++ b/packages/turf-area/package.json @@ -52,13 +52,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -66,6 +66,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bbox-clip/package.json b/packages/turf-bbox-clip/package.json index 11cbc4aebc..0e633797fb 100644 --- a/packages/turf-bbox-clip/package.json +++ b/packages/turf-bbox-clip/package.json @@ -59,13 +59,13 @@ "devDependencies": { "@turf/bbox": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -73,6 +73,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bbox-polygon/package.json b/packages/turf-bbox-polygon/package.json index 53b5d35ea1..cbc6dabd44 100644 --- a/packages/turf-bbox-polygon/package.json +++ b/packages/turf-bbox-polygon/package.json @@ -53,17 +53,17 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bbox/package.json b/packages/turf-bbox/package.json index 35783b046b..90af155cc8 100644 --- a/packages/turf-bbox/package.json +++ b/packages/turf-bbox/package.json @@ -54,18 +54,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bearing/package.json b/packages/turf-bearing/package.json index 2c2ca13c8a..36dd940361 100644 --- a/packages/turf-bearing/package.json +++ b/packages/turf-bearing/package.json @@ -51,12 +51,12 @@ "devDependencies": { "@turf/destination": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -64,6 +64,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-bezier-spline/package.json b/packages/turf-bezier-spline/package.json index 53c7e89a96..8062351814 100644 --- a/packages/turf-bezier-spline/package.json +++ b/packages/turf-bezier-spline/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -67,6 +67,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-clockwise/package.json b/packages/turf-boolean-clockwise/package.json index 54c09215b0..381d67db2f 100755 --- a/packages/turf-boolean-clockwise/package.json +++ b/packages/turf-boolean-clockwise/package.json @@ -57,20 +57,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-concave/package.json b/packages/turf-boolean-concave/package.json index 57bc447c88..2e4b5109b2 100644 --- a/packages/turf-boolean-concave/package.json +++ b/packages/turf-boolean-concave/package.json @@ -56,20 +56,20 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-contains/package.json b/packages/turf-boolean-contains/package.json index 26f07f01ba..5154aded16 100644 --- a/packages/turf-boolean-contains/package.json +++ b/packages/turf-boolean-contains/package.json @@ -56,16 +56,16 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -75,6 +75,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-crosses/package.json b/packages/turf-boolean-crosses/package.json index 4efabdfe89..269c93f9f7 100644 --- a/packages/turf-boolean-crosses/package.json +++ b/packages/turf-boolean-crosses/package.json @@ -56,15 +56,15 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -74,6 +74,6 @@ "@turf/line-intersect": "workspace:^", "@turf/polygon-to-line": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-disjoint/package.json b/packages/turf-boolean-disjoint/package.json index 58602d5cc3..aff58a995c 100644 --- a/packages/turf-boolean-disjoint/package.json +++ b/packages/turf-boolean-disjoint/package.json @@ -56,14 +56,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-shapely": "*", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -73,6 +73,6 @@ "@turf/meta": "workspace:^", "@turf/polygon-to-line": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-equal/package.json b/packages/turf-boolean-equal/package.json index 240f075fbf..fdd1e5c084 100644 --- a/packages/turf-boolean-equal/package.json +++ b/packages/turf-boolean-equal/package.json @@ -59,15 +59,15 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -76,6 +76,6 @@ "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", "geojson-equality-ts": "^1.0.2", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-intersects/package.json b/packages/turf-boolean-intersects/package.json index a58594378f..efe3e08397 100644 --- a/packages/turf-boolean-intersects/package.json +++ b/packages/turf-boolean-intersects/package.json @@ -57,14 +57,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-shapely": "*", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-overlap/package.json b/packages/turf-boolean-overlap/package.json index d5f9c1465d..4171e3ca1c 100755 --- a/packages/turf-boolean-overlap/package.json +++ b/packages/turf-boolean-overlap/package.json @@ -58,15 +58,15 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -77,6 +77,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "geojson-equality-ts": "^1.0.2", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-parallel/package.json b/packages/turf-boolean-parallel/package.json index 36e629ff19..31ed0d9a1d 100644 --- a/packages/turf-boolean-parallel/package.json +++ b/packages/turf-boolean-parallel/package.json @@ -55,13 +55,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -71,6 +71,6 @@ "@turf/line-segment": "workspace:^", "@turf/rhumb-bearing": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-point-in-polygon/package.json b/packages/turf-boolean-point-in-polygon/package.json index 8e90e8bcdc..7097dac65f 100644 --- a/packages/turf-boolean-point-in-polygon/package.json +++ b/packages/turf-boolean-point-in-polygon/package.json @@ -54,12 +54,12 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -67,6 +67,6 @@ "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", "point-in-polygon-hao": "^1.1.0", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-point-on-line/package.json b/packages/turf-boolean-point-on-line/package.json index 74c354e8fb..dbedc07bb3 100644 --- a/packages/turf-boolean-point-on-line/package.json +++ b/packages/turf-boolean-point-on-line/package.json @@ -53,14 +53,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-touches/package.json b/packages/turf-boolean-touches/package.json index 1c7c696857..8b5d186ce5 100644 --- a/packages/turf-boolean-touches/package.json +++ b/packages/turf-boolean-touches/package.json @@ -58,16 +58,16 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -76,6 +76,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-valid/package.json b/packages/turf-boolean-valid/package.json index f98b989128..01356d7f77 100644 --- a/packages/turf-boolean-valid/package.json +++ b/packages/turf-boolean-valid/package.json @@ -56,16 +56,16 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -80,6 +80,6 @@ "@turf/line-intersect": "workspace:^", "@types/geojson": "^7946.0.10", "geojson-polygon-self-intersections": "^1.2.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-boolean-within/package.json b/packages/turf-boolean-within/package.json index 65f7b9d2fb..2f4a80efb1 100644 --- a/packages/turf-boolean-within/package.json +++ b/packages/turf-boolean-within/package.json @@ -58,16 +58,16 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "boolean-jsts": "*", "boolean-shapely": "*", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -77,6 +77,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-buffer/package.json b/packages/turf-buffer/package.json index f2b0c0a80f..20fc8953be 100644 --- a/packages/turf-buffer/package.json +++ b/packages/turf-buffer/package.json @@ -62,13 +62,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-center-mean/package.json b/packages/turf-center-mean/package.json index 6fe4b8ac7d..14b2b5a4a8 100644 --- a/packages/turf-center-mean/package.json +++ b/packages/turf-center-mean/package.json @@ -61,14 +61,14 @@ "@turf/center": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -77,6 +77,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-center-median/package.json b/packages/turf-center-median/package.json index 4b92db29b2..98865caf02 100644 --- a/packages/turf-center-median/package.json +++ b/packages/turf-center-median/package.json @@ -57,13 +57,13 @@ "@turf/random": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -74,6 +74,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-center-of-mass/package.json b/packages/turf-center-of-mass/package.json index 58548a0298..bf0819ed32 100644 --- a/packages/turf-center-of-mass/package.json +++ b/packages/turf-center-of-mass/package.json @@ -51,14 +51,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -69,6 +69,6 @@ "@turf/invariant": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-center/package.json b/packages/turf-center/package.json index c21303a23b..68b0c2ab43 100644 --- a/packages/turf-center/package.json +++ b/packages/turf-center/package.json @@ -57,14 +57,14 @@ "@turf/bbox-polygon": "workspace:^", "@turf/meta": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/bbox": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-centroid/package.json b/packages/turf-centroid/package.json index 5ad62aa884..21c81c6d7e 100644 --- a/packages/turf-centroid/package.json +++ b/packages/turf-centroid/package.json @@ -53,14 +53,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-circle/package.json b/packages/turf-circle/package.json index 86305350fc..a1ffaac54e 100644 --- a/packages/turf-circle/package.json +++ b/packages/turf-circle/package.json @@ -57,13 +57,13 @@ "@placemarkio/check-geojson": "^0.1.12", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -71,6 +71,6 @@ "@turf/destination": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clean-coords/package.json b/packages/turf-clean-coords/package.json index 4a95525a38..718bee991a 100644 --- a/packages/turf-clean-coords/package.json +++ b/packages/turf-clean-coords/package.json @@ -56,13 +56,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -70,6 +70,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clone/package.json b/packages/turf-clone/package.json index efc345f81e..3c9d4b989a 100644 --- a/packages/turf-clone/package.json +++ b/packages/turf-clone/package.json @@ -55,17 +55,17 @@ "devDependencies": { "@turf/meta": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clusters-dbscan/package.json b/packages/turf-clusters-dbscan/package.json index 3bc8defc98..3eea20ea9c 100644 --- a/packages/turf-clusters-dbscan/package.json +++ b/packages/turf-clusters-dbscan/package.json @@ -64,15 +64,15 @@ "@turf/clusters": "workspace:^", "@types/benchmark": "^2.1.5", "@types/rbush": "^3.0.2", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "chromatism": "^3.0.0", "concaveman": "^1.2.1", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -83,6 +83,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clusters-kmeans/package.json b/packages/turf-clusters-kmeans/package.json index e3f2b1791c..ffd75ec784 100644 --- a/packages/turf-clusters-kmeans/package.json +++ b/packages/turf-clusters-kmeans/package.json @@ -64,15 +64,15 @@ "@turf/random": "workspace:^", "@types/benchmark": "^2.1.5", "@types/skmeans": "^0.11.7", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "chromatism": "^3.0.0", "concaveman": "^1.2.1", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -83,6 +83,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "skmeans": "0.9.7", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-clusters/package.json b/packages/turf-clusters/package.json index 0f461bdb79..e4da1c1aa6 100644 --- a/packages/turf-clusters/package.json +++ b/packages/turf-clusters/package.json @@ -57,18 +57,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-collect/package.json b/packages/turf-collect/package.json index 54d08bc197..c602017233 100644 --- a/packages/turf-collect/package.json +++ b/packages/turf-collect/package.json @@ -58,12 +58,12 @@ "devDependencies": { "@types/benchmark": "^2.1.5", "@types/rbush": "^3.0.2", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-combine/package.json b/packages/turf-combine/package.json index 605276e2dd..db7cd0d720 100644 --- a/packages/turf-combine/package.json +++ b/packages/turf-combine/package.json @@ -53,18 +53,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-concave/package.json b/packages/turf-concave/package.json index 9583824c3c..1036883e5e 100644 --- a/packages/turf-concave/package.json +++ b/packages/turf-concave/package.json @@ -63,15 +63,15 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "@types/topojson-client": "3.1.3", "@types/topojson-server": "3.0.3", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -85,6 +85,6 @@ "@types/geojson": "^7946.0.10", "topojson-client": "3.x", "topojson-server": "3.x", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-convex/package.json b/packages/turf-convex/package.json index 2905b33f29..808b695fc8 100644 --- a/packages/turf-convex/package.json +++ b/packages/turf-convex/package.json @@ -51,14 +51,14 @@ "devDependencies": { "@types/benchmark": "^2.1.5", "@types/concaveman": "^1.1.6", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -67,6 +67,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "concaveman": "^1.2.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-destination/package.json b/packages/turf-destination/package.json index 155ecc5ce6..cc7ae74431 100644 --- a/packages/turf-destination/package.json +++ b/packages/turf-destination/package.json @@ -55,14 +55,14 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -70,6 +70,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-difference/package.json b/packages/turf-difference/package.json index 321ee633f2..110832ef30 100644 --- a/packages/turf-difference/package.json +++ b/packages/turf-difference/package.json @@ -50,14 +50,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -66,6 +66,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-directional-mean/package.json b/packages/turf-directional-mean/package.json index 36e5552c58..fbaf429631 100644 --- a/packages/turf-directional-mean/package.json +++ b/packages/turf-directional-mean/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/length": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-dissolve/package.json b/packages/turf-dissolve/package.json index 48e4c90c7e..85089bdaaa 100644 --- a/packages/turf-dissolve/package.json +++ b/packages/turf-dissolve/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -70,6 +70,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-distance-weight/package.json b/packages/turf-distance-weight/package.json index 7563e7854b..21f27c70e1 100644 --- a/packages/turf-distance-weight/package.json +++ b/packages/turf-distance-weight/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -69,6 +69,6 @@ "@turf/invariant": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-distance/package.json b/packages/turf-distance/package.json index fb15447ae1..4d5a654e5a 100644 --- a/packages/turf-distance/package.json +++ b/packages/turf-distance/package.json @@ -52,13 +52,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -66,6 +66,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-ellipse/package.json b/packages/turf-ellipse/package.json index eea2117419..6dd86f050e 100644 --- a/packages/turf-ellipse/package.json +++ b/packages/turf-ellipse/package.json @@ -58,14 +58,14 @@ "@turf/destination": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -75,6 +75,6 @@ "@turf/rhumb-destination": "workspace:^", "@turf/transform-rotate": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-envelope/package.json b/packages/turf-envelope/package.json index a886e7b910..e0f19e1981 100644 --- a/packages/turf-envelope/package.json +++ b/packages/turf-envelope/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -67,6 +67,6 @@ "@turf/bbox-polygon": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-explode/package.json b/packages/turf-explode/package.json index aaa87b435f..284863052b 100644 --- a/packages/turf-explode/package.json +++ b/packages/turf-explode/package.json @@ -52,13 +52,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -66,6 +66,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-flatten/package.json b/packages/turf-flatten/package.json index bca313efa5..cfa1890b10 100644 --- a/packages/turf-flatten/package.json +++ b/packages/turf-flatten/package.json @@ -58,13 +58,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-flip/package.json b/packages/turf-flip/package.json index e87727629a..e21e7d4c9e 100644 --- a/packages/turf-flip/package.json +++ b/packages/turf-flip/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-geojson-rbush/package.json b/packages/turf-geojson-rbush/package.json index 5d19ba7cdb..f1e6c9d3f9 100644 --- a/packages/turf-geojson-rbush/package.json +++ b/packages/turf-geojson-rbush/package.json @@ -61,13 +61,13 @@ "@turf/bbox-polygon": "workspace:^", "@turf/random": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.2.2", "write-json-file": "^5.0.0" }, diff --git a/packages/turf-great-circle/package.json b/packages/turf-great-circle/package.json index d55d5e64ac..6df5f1f746 100644 --- a/packages/turf-great-circle/package.json +++ b/packages/turf-great-circle/package.json @@ -60,13 +60,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-helpers/package.json b/packages/turf-helpers/package.json index 87a45f63cb..a67c831b29 100644 --- a/packages/turf-helpers/package.json +++ b/packages/turf-helpers/package.json @@ -59,16 +59,16 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-hex-grid/package.json b/packages/turf-hex-grid/package.json index 97345508e5..eab1c8c326 100644 --- a/packages/turf-hex-grid/package.json +++ b/packages/turf-hex-grid/package.json @@ -65,13 +65,13 @@ "@turf/bbox-polygon": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -81,6 +81,6 @@ "@turf/intersect": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-interpolate/package.json b/packages/turf-interpolate/package.json index ecbaa390d7..fc553f9d50 100644 --- a/packages/turf-interpolate/package.json +++ b/packages/turf-interpolate/package.json @@ -56,14 +56,14 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "chromatism": "^3.0.0", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-intersect/package.json b/packages/turf-intersect/package.json index 6c2a042fde..20b174425a 100644 --- a/packages/turf-intersect/package.json +++ b/packages/turf-intersect/package.json @@ -52,14 +52,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-invariant/package.json b/packages/turf-invariant/package.json index 642eacd2b5..bc90fba646 100644 --- a/packages/turf-invariant/package.json +++ b/packages/turf-invariant/package.json @@ -56,17 +56,17 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-isobands/package.json b/packages/turf-isobands/package.json index 948eec4dec..9dbf1e1308 100644 --- a/packages/turf-isobands/package.json +++ b/packages/turf-isobands/package.json @@ -63,13 +63,13 @@ "@turf/rhumb-destination": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -83,6 +83,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "marchingsquares": "^1.3.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-isolines/package.json b/packages/turf-isolines/package.json index 84d88940d4..f3a959600f 100644 --- a/packages/turf-isolines/package.json +++ b/packages/turf-isolines/package.json @@ -63,13 +63,13 @@ "@turf/rhumb-destination": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -80,6 +80,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "marchingsquares": "^1.3.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-kinks/package.json b/packages/turf-kinks/package.json index 575c8a33b5..01eaf7a1d0 100644 --- a/packages/turf-kinks/package.json +++ b/packages/turf-kinks/package.json @@ -53,19 +53,19 @@ "devDependencies": { "@turf/meta": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-length/package.json b/packages/turf-length/package.json index 954b5186cc..89b848eb5b 100644 --- a/packages/turf-length/package.json +++ b/packages/turf-length/package.json @@ -58,13 +58,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -73,6 +73,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-arc/package.json b/packages/turf-line-arc/package.json index cb86fa3ef7..8586adcf75 100644 --- a/packages/turf-line-arc/package.json +++ b/packages/turf-line-arc/package.json @@ -52,13 +52,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -67,6 +67,6 @@ "@turf/destination": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-chunk/package.json b/packages/turf-line-chunk/package.json index 983a4d0875..145cb2164a 100644 --- a/packages/turf-line-chunk/package.json +++ b/packages/turf-line-chunk/package.json @@ -61,13 +61,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-line-intersect/package.json b/packages/turf-line-intersect/package.json index a7f3e1482b..7f2e7fb3c2 100644 --- a/packages/turf-line-intersect/package.json +++ b/packages/turf-line-intersect/package.json @@ -58,13 +58,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", "sweepline-intersections": "^1.5.0", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-offset/package.json b/packages/turf-line-offset/package.json index 34c28e4aa5..29afb825aa 100644 --- a/packages/turf-line-offset/package.json +++ b/packages/turf-line-offset/package.json @@ -59,13 +59,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-line-overlap/package.json b/packages/turf-line-overlap/package.json index ace935b7c8..c3a4d9f923 100644 --- a/packages/turf-line-overlap/package.json +++ b/packages/turf-line-overlap/package.json @@ -57,13 +57,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -77,6 +77,6 @@ "@turf/nearest-point-on-line": "workspace:^", "@types/geojson": "^7946.0.10", "fast-deep-equal": "^3.1.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-segment/package.json b/packages/turf-line-segment/package.json index be0b3bb813..3a0a6bf66c 100644 --- a/packages/turf-line-segment/package.json +++ b/packages/turf-line-segment/package.json @@ -51,13 +51,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -66,6 +66,6 @@ "@turf/invariant": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-line-slice-along/package.json b/packages/turf-line-slice-along/package.json index 3a7489e82d..5c7c16cd24 100644 --- a/packages/turf-line-slice-along/package.json +++ b/packages/turf-line-slice-along/package.json @@ -53,13 +53,13 @@ "@turf/along": "workspace:^", "@turf/length": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2" + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2" }, "dependencies": { "@turf/bearing": "workspace:^", diff --git a/packages/turf-line-slice/package.json b/packages/turf-line-slice/package.json index f2c94cc197..eafcd47914 100644 --- a/packages/turf-line-slice/package.json +++ b/packages/turf-line-slice/package.json @@ -56,13 +56,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-line-split/package.json b/packages/turf-line-split/package.json index f3b77ef585..c4d26d038a 100644 --- a/packages/turf-line-split/package.json +++ b/packages/turf-line-split/package.json @@ -56,13 +56,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "write-json-file": "^5.0.0" }, "dependencies": { diff --git a/packages/turf-line-to-polygon/package.json b/packages/turf-line-to-polygon/package.json index 581256021d..e1dfcf99e2 100644 --- a/packages/turf-line-to-polygon/package.json +++ b/packages/turf-line-to-polygon/package.json @@ -57,13 +57,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -73,6 +73,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-mask/package.json b/packages/turf-mask/package.json index 43f37ab543..108947cd72 100644 --- a/packages/turf-mask/package.json +++ b/packages/turf-mask/package.json @@ -52,14 +52,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "mkdirp": "^3.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-meta/package.json b/packages/turf-meta/package.json index dc149df718..1e2b475cda 100644 --- a/packages/turf-meta/package.json +++ b/packages/turf-meta/package.json @@ -77,9 +77,9 @@ "@types/benchmark": "^2.1.5", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2" + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2" }, "dependencies": { "@turf/helpers": "workspace:^", diff --git a/packages/turf-midpoint/package.json b/packages/turf-midpoint/package.json index 22e74d989c..c0b77674b1 100644 --- a/packages/turf-midpoint/package.json +++ b/packages/turf-midpoint/package.json @@ -53,12 +53,12 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -67,6 +67,6 @@ "@turf/distance": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-moran-index/package.json b/packages/turf-moran-index/package.json index 23b34f5263..c7f89f31d1 100644 --- a/packages/turf-moran-index/package.json +++ b/packages/turf-moran-index/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-nearest-neighbor-analysis/package.json b/packages/turf-nearest-neighbor-analysis/package.json index 938990c4c9..16d8e606dc 100644 --- a/packages/turf-nearest-neighbor-analysis/package.json +++ b/packages/turf-nearest-neighbor-analysis/package.json @@ -54,13 +54,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -74,6 +74,6 @@ "@turf/meta": "workspace:^", "@turf/nearest-point": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-nearest-point-on-line/package.json b/packages/turf-nearest-point-on-line/package.json index 325a758ade..895ad269d4 100644 --- a/packages/turf-nearest-point-on-line/package.json +++ b/packages/turf-nearest-point-on-line/package.json @@ -50,13 +50,13 @@ "@turf/length": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -66,6 +66,6 @@ "@turf/invariant": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-nearest-point-to-line/package.json b/packages/turf-nearest-point-to-line/package.json index 95efad55b0..15859b5987 100644 --- a/packages/turf-nearest-point-to-line/package.json +++ b/packages/turf-nearest-point-to-line/package.json @@ -60,13 +60,13 @@ "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", "@types/object-assign": "^4.0.33", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -76,6 +76,6 @@ "@turf/meta": "workspace:^", "@turf/point-to-line-distance": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-nearest-point/package.json b/packages/turf-nearest-point/package.json index 99964c06c5..c13213e6a1 100644 --- a/packages/turf-nearest-point/package.json +++ b/packages/turf-nearest-point/package.json @@ -55,13 +55,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -71,6 +71,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-planepoint/package.json b/packages/turf-planepoint/package.json index 56240f17cc..33be1bb7ae 100644 --- a/packages/turf-planepoint/package.json +++ b/packages/turf-planepoint/package.json @@ -54,18 +54,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-point-grid/package.json b/packages/turf-point-grid/package.json index eacb2443e2..83c8d80908 100644 --- a/packages/turf-point-grid/package.json +++ b/packages/turf-point-grid/package.json @@ -59,13 +59,13 @@ "@turf/bbox-polygon": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -75,6 +75,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-point-on-feature/package.json b/packages/turf-point-on-feature/package.json index 36f7db65cd..1b8da78c4d 100644 --- a/packages/turf-point-on-feature/package.json +++ b/packages/turf-point-on-feature/package.json @@ -56,12 +56,12 @@ "@turf/meta": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@turf/nearest-point": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-point-to-line-distance/package.json b/packages/turf-point-to-line-distance/package.json index 8d1feff848..b997b90f56 100644 --- a/packages/turf-point-to-line-distance/package.json +++ b/packages/turf-point-to-line-distance/package.json @@ -56,13 +56,13 @@ "devDependencies": { "@turf/circle": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -77,6 +77,6 @@ "@turf/rhumb-bearing": "workspace:^", "@turf/rhumb-distance": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-point-to-polygon-distance/package.json b/packages/turf-point-to-polygon-distance/package.json index 689618f362..5c46b6aeb3 100644 --- a/packages/turf-point-to-polygon-distance/package.json +++ b/packages/turf-point-to-polygon-distance/package.json @@ -56,13 +56,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -74,6 +74,6 @@ "@turf/point-to-line-distance": "workspace:^", "@turf/polygon-to-line": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-points-within-polygon/package.json b/packages/turf-points-within-polygon/package.json index fd0828e0d1..939a1b6ff5 100644 --- a/packages/turf-points-within-polygon/package.json +++ b/packages/turf-points-within-polygon/package.json @@ -54,12 +54,12 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -67,6 +67,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-polygon-smooth/package.json b/packages/turf-polygon-smooth/package.json index e035c4c884..2afc18e336 100644 --- a/packages/turf-polygon-smooth/package.json +++ b/packages/turf-polygon-smooth/package.json @@ -55,14 +55,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -70,6 +70,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-polygon-tangents/package.json b/packages/turf-polygon-tangents/package.json index eede9b5ee0..984b265b51 100644 --- a/packages/turf-polygon-tangents/package.json +++ b/packages/turf-polygon-tangents/package.json @@ -58,13 +58,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -76,6 +76,6 @@ "@turf/invariant": "workspace:^", "@turf/nearest-point": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-polygon-to-line/package.json b/packages/turf-polygon-to-line/package.json index 54315bbb6b..ee3cc4a889 100644 --- a/packages/turf-polygon-to-line/package.json +++ b/packages/turf-polygon-to-line/package.json @@ -53,13 +53,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -67,6 +67,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-polygonize/package.json b/packages/turf-polygonize/package.json index 8e0fcf805c..301fcd6f70 100644 --- a/packages/turf-polygonize/package.json +++ b/packages/turf-polygonize/package.json @@ -57,13 +57,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -74,6 +74,6 @@ "@turf/invariant": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-projection/package.json b/packages/turf-projection/package.json index 431910abc0..bb4d8a1fb4 100644 --- a/packages/turf-projection/package.json +++ b/packages/turf-projection/package.json @@ -66,14 +66,14 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", "proj4": "^2.9.2", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -82,6 +82,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-quadrat-analysis/package.json b/packages/turf-quadrat-analysis/package.json index 9093cf8613..29974fcdb2 100644 --- a/packages/turf-quadrat-analysis/package.json +++ b/packages/turf-quadrat-analysis/package.json @@ -54,13 +54,13 @@ "devDependencies": { "@turf/nearest-neighbor-analysis": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -75,6 +75,6 @@ "@turf/random": "workspace:^", "@turf/square-grid": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-random/package.json b/packages/turf-random/package.json index 38b2c44688..283bc98ea3 100644 --- a/packages/turf-random/package.json +++ b/packages/turf-random/package.json @@ -50,18 +50,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rectangle-grid/package.json b/packages/turf-rectangle-grid/package.json index 14f0d617cb..04ed435f32 100644 --- a/packages/turf-rectangle-grid/package.json +++ b/packages/turf-rectangle-grid/package.json @@ -58,13 +58,13 @@ "@turf/bbox-polygon": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -73,6 +73,6 @@ "@turf/distance": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rewind/package.json b/packages/turf-rewind/package.json index 9e04a4f630..7c0734680c 100644 --- a/packages/turf-rewind/package.json +++ b/packages/turf-rewind/package.json @@ -59,13 +59,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -76,6 +76,6 @@ "@turf/invariant": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rhumb-bearing/package.json b/packages/turf-rhumb-bearing/package.json index 6410eb40d3..1e9ddf7876 100644 --- a/packages/turf-rhumb-bearing/package.json +++ b/packages/turf-rhumb-bearing/package.json @@ -59,12 +59,12 @@ "devDependencies": { "@turf/destination": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rhumb-destination/package.json b/packages/turf-rhumb-destination/package.json index 79e08a3e16..d11d507c35 100644 --- a/packages/turf-rhumb-destination/package.json +++ b/packages/turf-rhumb-destination/package.json @@ -63,13 +63,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -77,6 +77,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-rhumb-distance/package.json b/packages/turf-rhumb-distance/package.json index 06d996034f..9dfd38a9b2 100644 --- a/packages/turf-rhumb-distance/package.json +++ b/packages/turf-rhumb-distance/package.json @@ -61,13 +61,13 @@ "devDependencies": { "@turf/distance": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -75,6 +75,6 @@ "@turf/helpers": "workspace:^", "@turf/invariant": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-sample/package.json b/packages/turf-sample/package.json index e27419b91a..889c0b4936 100644 --- a/packages/turf-sample/package.json +++ b/packages/turf-sample/package.json @@ -52,17 +52,17 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-sector/package.json b/packages/turf-sector/package.json index 5c25792698..8ed23177ad 100644 --- a/packages/turf-sector/package.json +++ b/packages/turf-sector/package.json @@ -52,13 +52,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -69,6 +69,6 @@ "@turf/line-arc": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-shortest-path/package.json b/packages/turf-shortest-path/package.json index a08a1326d0..2e290d45da 100644 --- a/packages/turf-shortest-path/package.json +++ b/packages/turf-shortest-path/package.json @@ -57,13 +57,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -78,6 +78,6 @@ "@turf/meta": "workspace:^", "@turf/transform-scale": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-simplify/package.json b/packages/turf-simplify/package.json index cb1edd5e07..e3e62f71e6 100644 --- a/packages/turf-simplify/package.json +++ b/packages/turf-simplify/package.json @@ -60,13 +60,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -76,6 +76,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-square-grid/package.json b/packages/turf-square-grid/package.json index 4b00386036..b641701b61 100644 --- a/packages/turf-square-grid/package.json +++ b/packages/turf-square-grid/package.json @@ -55,12 +55,12 @@ "@turf/bbox-polygon": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -68,6 +68,6 @@ "@turf/helpers": "workspace:^", "@turf/rectangle-grid": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-square/package.json b/packages/turf-square/package.json index 91807bf787..02cee4853c 100644 --- a/packages/turf-square/package.json +++ b/packages/turf-square/package.json @@ -52,18 +52,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/distance": "workspace:^", "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-standard-deviational-ellipse/package.json b/packages/turf-standard-deviational-ellipse/package.json index 69e3fe5dc4..ab71fcf85a 100644 --- a/packages/turf-standard-deviational-ellipse/package.json +++ b/packages/turf-standard-deviational-ellipse/package.json @@ -58,13 +58,13 @@ "@turf/random": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -76,6 +76,6 @@ "@turf/meta": "workspace:^", "@turf/points-within-polygon": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-tag/package.json b/packages/turf-tag/package.json index 692c483a1f..a8e693ad1c 100644 --- a/packages/turf-tag/package.json +++ b/packages/turf-tag/package.json @@ -56,13 +56,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -71,6 +71,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-tesselate/package.json b/packages/turf-tesselate/package.json index 048cfee32d..a0733c6d65 100644 --- a/packages/turf-tesselate/package.json +++ b/packages/turf-tesselate/package.json @@ -60,18 +60,18 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", "earcut": "^2.2.4", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-tin/package.json b/packages/turf-tin/package.json index 2dd2f78174..08a00c43a2 100644 --- a/packages/turf-tin/package.json +++ b/packages/turf-tin/package.json @@ -52,17 +52,17 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { "@turf/helpers": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-transform-rotate/package.json b/packages/turf-transform-rotate/package.json index 9bcb716513..f245a05469 100644 --- a/packages/turf-transform-rotate/package.json +++ b/packages/turf-transform-rotate/package.json @@ -58,13 +58,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -78,6 +78,6 @@ "@turf/rhumb-destination": "workspace:^", "@turf/rhumb-distance": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-transform-scale/package.json b/packages/turf-transform-scale/package.json index 61acb936bf..2efe0c054f 100644 --- a/packages/turf-transform-scale/package.json +++ b/packages/turf-transform-scale/package.json @@ -64,13 +64,13 @@ "@turf/hex-grid": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -86,6 +86,6 @@ "@turf/rhumb-destination": "workspace:^", "@turf/rhumb-distance": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-transform-translate/package.json b/packages/turf-transform-translate/package.json index e129b04297..56a069ca37 100644 --- a/packages/turf-transform-translate/package.json +++ b/packages/turf-transform-translate/package.json @@ -60,13 +60,13 @@ "devDependencies": { "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -77,6 +77,6 @@ "@turf/meta": "workspace:^", "@turf/rhumb-destination": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-triangle-grid/package.json b/packages/turf-triangle-grid/package.json index fc953dffdc..d8b517bc3c 100644 --- a/packages/turf-triangle-grid/package.json +++ b/packages/turf-triangle-grid/package.json @@ -57,13 +57,13 @@ "@turf/bbox-polygon": "workspace:^", "@turf/truncate": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/helpers": "workspace:^", "@turf/intersect": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-truncate/package.json b/packages/turf-truncate/package.json index 40edff7cf9..f81eb98c28 100644 --- a/packages/turf-truncate/package.json +++ b/packages/turf-truncate/package.json @@ -56,13 +56,13 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -70,6 +70,6 @@ "@turf/helpers": "workspace:^", "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-union/package.json b/packages/turf-union/package.json index 790c6a6fb0..a39b688603 100644 --- a/packages/turf-union/package.json +++ b/packages/turf-union/package.json @@ -51,14 +51,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -67,6 +67,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "polygon-clipping": "^0.15.3", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-unkink-polygon/package.json b/packages/turf-unkink-polygon/package.json index d0d0846227..2f40ecdec7 100644 --- a/packages/turf-unkink-polygon/package.json +++ b/packages/turf-unkink-polygon/package.json @@ -55,13 +55,13 @@ "devDependencies": { "@turf/kinks": "workspace:^", "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -72,6 +72,6 @@ "@turf/meta": "workspace:^", "@types/geojson": "^7946.0.10", "rbush": "^3.0.1", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf-voronoi/package.json b/packages/turf-voronoi/package.json index 9e4c290c98..e7c0aadf5b 100644 --- a/packages/turf-voronoi/package.json +++ b/packages/turf-voronoi/package.json @@ -59,14 +59,14 @@ }, "devDependencies": { "@types/benchmark": "^2.1.5", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "benchmark": "^2.1.4", "glob": "^10.3.10", "load-json-file": "^7.0.1", "npm-run-all": "^4.1.5", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4", "write-json-file": "^5.0.0" }, @@ -77,6 +77,6 @@ "@types/d3-voronoi": "^1.1.12", "@types/geojson": "^7946.0.10", "d3-voronoi": "1.1.2", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/packages/turf/package.json b/packages/turf/package.json index 644fa5261a..0b39f24aed 100644 --- a/packages/turf/package.json +++ b/packages/turf/package.json @@ -74,21 +74,21 @@ "test": "echo '@turf/turf tests run in the last-checks step'" }, "devDependencies": { - "@babel/core": "^7.23.2", - "@babel/preset-env": "^7.23.2", + "@babel/core": "^7.26.0", + "@babel/preset-env": "^7.26.0", "@rollup/plugin-babel": "^6.0.4", - "@rollup/plugin-commonjs": "^25.0.7", - "@rollup/plugin-node-resolve": "^15.2.3", + "@rollup/plugin-commonjs": "^28.0.1", + "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-terser": "^0.4.4", - "@types/tape": "^4.2.32", + "@types/tape": "^4.13.4", "camelcase": "^8.0.0", "documentation": "^14.0.3", "glob": "^10.3.10", - "rollup": "^3.29.5", + "rollup": "^4.28.0", "rollup-plugin-polyfill-node": "^0.13.0", - "tape": "^5.7.2", - "tsup": "^8.0.1", - "tsx": "^4.6.2", + "tape": "^5.9.0", + "tsup": "^8.3.5", + "tsx": "^4.19.2", "typescript": "^5.5.4" }, "dependencies": { @@ -206,6 +206,6 @@ "@turf/unkink-polygon": "workspace:^", "@turf/voronoi": "workspace:^", "@types/geojson": "^7946.0.10", - "tslib": "^2.6.2" + "tslib": "^2.8.1" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7d1b8fba22..3ab4e90963 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,27 +8,27 @@ importers: .: devDependencies: + '@eslint/eslintrc': + specifier: ^3.2.0 + version: 3.2.0 + '@eslint/js': + specifier: ^9.16.0 + version: 9.16.0 '@monorepolint/cli': - specifier: 0.5.0-alpha.132 - version: 0.5.0-alpha.132 + specifier: 0.5.0 + version: 0.5.0 '@monorepolint/config': - specifier: 0.5.0-alpha.132 - version: 0.5.0-alpha.132 + specifier: 0.5.0 + version: 0.5.0 '@monorepolint/core': - specifier: 0.5.0-alpha.132 - version: 0.5.0-alpha.132 + specifier: 0.5.0 + version: 0.5.0 '@monorepolint/rules': - specifier: 0.5.0-alpha.132 - version: 0.5.0-alpha.132 + specifier: 0.5.0 + version: 0.5.0 '@types/node': specifier: 18.11.9 version: 18.11.9 - '@typescript-eslint/eslint-plugin': - specifier: ^6.10.0 - version: 6.13.2(@typescript-eslint/parser@6.13.2)(eslint@8.55.0)(typescript@5.5.4) - '@typescript-eslint/parser': - specifier: ^6.10.0 - version: 6.13.2(eslint@8.55.0)(typescript@5.5.4) acorn: specifier: ^7.4.1 version: 7.4.1 @@ -51,14 +51,14 @@ importers: specifier: ^7.1.1 version: 7.1.1 eslint: - specifier: ^8.53.0 - version: 8.55.0 + specifier: ^9.16.0 + version: 9.16.0 eslint-config-prettier: - specifier: ^9.0.0 - version: 9.1.0(eslint@8.55.0) + specifier: ^9.1.0 + version: 9.1.0(eslint@9.16.0) eslint-plugin-prettier: - specifier: ^5.0.1 - version: 5.0.1(eslint-config-prettier@9.1.0)(eslint@8.55.0)(prettier@3.3.3) + specifier: ^5.2.1 + version: 5.2.1(eslint-config-prettier@9.1.0)(eslint@9.16.0)(prettier@3.3.3) esm: specifier: ^3.2.25 version: 3.2.25 @@ -68,12 +68,15 @@ importers: glob: specifier: ^10.3.10 version: 10.3.10 + globals: + specifier: ^15.13.0 + version: 15.13.0 husky: specifier: ^9.0.0 version: 9.1.4 lerna: - specifier: ^8.1.7 - version: 8.1.7 + specifier: ^8.1.9 + version: 8.1.9 lint-staged: specifier: ^15.2.8 version: 15.2.8 @@ -92,18 +95,18 @@ importers: progress: specifier: ^2.0.3 version: 2.0.3 - ts-node: - specifier: ^9.0.0 - version: 9.1.1(typescript@5.5.4) tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 + typescript-eslint: + specifier: ^8.17.0 + version: 8.17.0(eslint@9.16.0)(typescript@5.5.4) yamljs: specifier: ^0.3.0 version: 0.3.0 @@ -453,29 +456,29 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@babel/core': - specifier: ^7.23.2 - version: 7.23.5 + specifier: ^7.26.0 + version: 7.26.0 '@babel/preset-env': - specifier: ^7.23.2 - version: 7.23.5(@babel/core@7.23.5) + specifier: ^7.26.0 + version: 7.26.0(@babel/core@7.26.0) '@rollup/plugin-babel': specifier: ^6.0.4 - version: 6.0.4(@babel/core@7.23.5)(rollup@3.29.5) + version: 6.0.4(@babel/core@7.26.0)(rollup@4.28.0) '@rollup/plugin-commonjs': - specifier: ^25.0.7 - version: 25.0.7(rollup@3.29.5) + specifier: ^28.0.1 + version: 28.0.1(rollup@4.28.0) '@rollup/plugin-node-resolve': - specifier: ^15.2.3 - version: 15.2.3(rollup@3.29.5) + specifier: ^15.3.0 + version: 15.3.0(rollup@4.28.0) '@rollup/plugin-terser': specifier: ^0.4.4 - version: 0.4.4(rollup@3.29.5) + version: 0.4.4(rollup@4.28.0) '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 camelcase: specifier: ^8.0.0 @@ -487,20 +490,20 @@ importers: specifier: ^10.3.10 version: 10.3.10 rollup: - specifier: ^3.29.5 - version: 3.29.5 + specifier: ^4.28.0 + version: 4.28.0 rollup-plugin-polyfill-node: specifier: ^0.13.0 - version: 0.13.0(rollup@3.29.5) + version: 0.13.0(rollup@4.28.0) tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -526,14 +529,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -545,14 +548,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -575,8 +578,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/distance': specifier: workspace:^ @@ -591,7 +594,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -606,14 +609,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -633,14 +636,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -652,14 +655,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -679,14 +682,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -695,14 +698,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -719,8 +722,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox': specifier: workspace:^ @@ -729,7 +732,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -741,14 +744,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -765,14 +768,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -781,14 +784,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -805,8 +808,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/destination': specifier: workspace:^ @@ -815,7 +818,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -824,14 +827,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -851,14 +854,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -870,14 +873,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -897,14 +900,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -919,14 +922,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -943,14 +946,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -965,14 +968,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -998,14 +1001,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1026,14 +1029,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1059,14 +1062,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1084,14 +1087,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1117,14 +1120,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1139,14 +1142,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1169,14 +1172,14 @@ importers: specifier: ^1.0.2 version: 1.0.2 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1194,14 +1197,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1221,14 +1224,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1243,14 +1246,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1279,14 +1282,14 @@ importers: specifier: ^1.0.2 version: 1.0.2 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1304,14 +1307,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1334,14 +1337,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1353,14 +1356,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1383,14 +1386,14 @@ importers: specifier: ^1.1.0 version: 1.1.0 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1399,14 +1402,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1423,14 +1426,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1445,14 +1448,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1478,14 +1481,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1506,14 +1509,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1554,14 +1557,14 @@ importers: specifier: ^1.2.1 version: 1.2.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1582,14 +1585,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1615,14 +1618,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1643,14 +1646,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1689,7 +1692,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1701,14 +1704,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -1725,8 +1728,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -1738,7 +1741,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1753,14 +1756,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1783,8 +1786,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/center': specifier: workspace:^ @@ -1796,7 +1799,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1811,14 +1814,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1847,8 +1850,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/center': specifier: workspace:^ @@ -1866,7 +1869,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1878,14 +1881,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1914,14 +1917,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1936,14 +1939,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -1963,14 +1966,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -1985,14 +1988,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2012,8 +2015,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@placemarkio/check-geojson': specifier: ^0.1.12 @@ -2025,7 +2028,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2037,14 +2040,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2064,8 +2067,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -2074,7 +2077,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2086,14 +2089,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2110,8 +2113,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/meta': specifier: workspace:^ @@ -2120,7 +2123,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2129,14 +2132,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2153,14 +2156,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2169,14 +2172,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2202,8 +2205,8 @@ importers: specifier: ^3.0.1 version: 3.0.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/centroid': specifier: workspace:^ @@ -2218,7 +2221,7 @@ importers: specifier: ^3.0.2 version: 3.0.3 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2236,14 +2239,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2272,8 +2275,8 @@ importers: specifier: 0.9.7 version: 0.9.7 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/centroid': specifier: workspace:^ @@ -2291,7 +2294,7 @@ importers: specifier: ^0.11.7 version: 0.11.7 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2309,14 +2312,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2342,8 +2345,8 @@ importers: specifier: ^3.0.1 version: 3.0.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 @@ -2352,7 +2355,7 @@ importers: specifier: ^3.0.2 version: 3.0.3 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2361,14 +2364,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2385,14 +2388,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2401,14 +2404,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2443,14 +2446,14 @@ importers: specifier: 3.x version: 3.0.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 '@types/topojson-client': specifier: 3.1.3 @@ -2468,14 +2471,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2498,8 +2501,8 @@ importers: specifier: ^1.2.1 version: 1.2.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 @@ -2508,7 +2511,7 @@ importers: specifier: ^1.1.6 version: 1.1.6 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2523,14 +2526,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2550,8 +2553,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -2560,7 +2563,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2575,14 +2578,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2605,14 +2608,14 @@ importers: specifier: ^0.15.3 version: 0.15.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2627,14 +2630,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2669,14 +2672,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2688,14 +2691,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2724,14 +2727,14 @@ importers: specifier: ^0.15.3 version: 0.15.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2743,14 +2746,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2770,14 +2773,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2789,14 +2792,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2822,14 +2825,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2841,14 +2844,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2874,8 +2877,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@placemarkio/check-geojson': specifier: ^0.1.12 @@ -2896,7 +2899,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2911,14 +2914,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2941,14 +2944,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -2960,14 +2963,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -2984,14 +2987,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3003,14 +3006,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3030,14 +3033,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3049,14 +3052,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3079,14 +3082,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3098,14 +3101,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3141,7 +3144,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3153,14 +3156,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.3.3) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.2.2 version: 5.3.3 @@ -3187,7 +3190,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3199,14 +3202,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -3217,14 +3220,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3233,14 +3236,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3263,8 +3266,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -3276,7 +3279,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3288,14 +3291,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3349,7 +3352,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3364,14 +3367,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -3391,14 +3394,14 @@ importers: specifier: ^0.15.3 version: 0.15.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3413,14 +3416,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3437,14 +3440,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3453,14 +3456,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3495,8 +3498,8 @@ importers: specifier: ^1.3.3 version: 1.3.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/envelope': specifier: workspace:^ @@ -3517,7 +3520,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3529,14 +3532,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3565,8 +3568,8 @@ importers: specifier: ^1.3.3 version: 1.3.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/envelope': specifier: workspace:^ @@ -3587,7 +3590,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3599,14 +3602,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3623,8 +3626,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/meta': specifier: workspace:^ @@ -3633,7 +3636,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3645,14 +3648,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3675,14 +3678,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3694,14 +3697,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3724,8 +3727,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -3734,7 +3737,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3746,14 +3749,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3786,7 +3789,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3798,14 +3801,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -3822,8 +3825,8 @@ importers: specifier: ^1.5.0 version: 1.5.0 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -3832,7 +3835,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3844,14 +3847,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3881,7 +3884,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3893,14 +3896,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -3935,14 +3938,14 @@ importers: specifier: ^3.1.3 version: 3.1.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -3954,14 +3957,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -3984,14 +3987,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4003,14 +4006,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4040,7 +4043,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4052,14 +4055,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -4092,7 +4095,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4104,14 +4107,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 packages/turf-line-split: dependencies: @@ -4153,7 +4156,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4165,14 +4168,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 write-json-file: specifier: ^5.0.0 version: 5.0.0 @@ -4195,14 +4198,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4214,14 +4217,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4244,14 +4247,14 @@ importers: specifier: ^0.15.3 version: 0.15.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4266,14 +4269,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4303,14 +4306,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 packages/turf-midpoint: dependencies: @@ -4330,14 +4333,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4346,14 +4349,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4373,14 +4376,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4392,14 +4395,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4437,8 +4440,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -4447,7 +4450,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4459,14 +4462,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4492,14 +4495,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4511,14 +4514,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4544,8 +4547,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/along': specifier: workspace:^ @@ -4560,7 +4563,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4572,14 +4575,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4605,8 +4608,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/circle': specifier: workspace:^ @@ -4621,7 +4624,7 @@ importers: specifier: ^4.0.33 version: 4.0.33 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4633,14 +4636,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4660,14 +4663,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4676,14 +4679,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4706,8 +4709,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -4719,7 +4722,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4731,14 +4734,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4767,8 +4770,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/meta': specifier: workspace:^ @@ -4780,7 +4783,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4789,14 +4792,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4837,8 +4840,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/circle': specifier: workspace:^ @@ -4847,7 +4850,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4859,14 +4862,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4898,14 +4901,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4917,14 +4920,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4947,14 +4950,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -4963,14 +4966,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -4987,14 +4990,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5009,14 +5012,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5048,14 +5051,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5067,14 +5070,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5094,14 +5097,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5113,14 +5116,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5149,14 +5152,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5168,14 +5171,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5198,8 +5201,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -5208,7 +5211,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5223,14 +5226,14 @@ importers: specifier: ^2.9.2 version: 2.9.2 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5271,8 +5274,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/nearest-neighbor-analysis': specifier: workspace:^ @@ -5281,7 +5284,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5293,14 +5296,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5317,14 +5320,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5336,14 +5339,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5363,8 +5366,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -5376,7 +5379,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5388,14 +5391,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5424,14 +5427,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5443,14 +5446,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5470,8 +5473,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/destination': specifier: workspace:^ @@ -5480,7 +5483,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5489,14 +5492,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5516,8 +5519,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -5526,7 +5529,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5538,14 +5541,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5565,8 +5568,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/distance': specifier: workspace:^ @@ -5575,7 +5578,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5587,14 +5590,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5611,14 +5614,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5627,14 +5630,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5660,8 +5663,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -5670,7 +5673,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5682,14 +5685,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5730,8 +5733,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -5740,7 +5743,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5752,14 +5755,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5785,8 +5788,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -5795,7 +5798,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5807,14 +5810,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5834,14 +5837,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5850,14 +5853,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5874,8 +5877,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -5887,7 +5890,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5896,14 +5899,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5935,8 +5938,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/random': specifier: workspace:^ @@ -5948,7 +5951,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -5960,14 +5963,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -5993,14 +5996,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6012,14 +6015,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6036,14 +6039,14 @@ importers: specifier: ^2.2.4 version: 2.2.4 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6052,14 +6055,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6073,14 +6076,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6089,14 +6092,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6131,8 +6134,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -6141,7 +6144,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6153,14 +6156,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6204,8 +6207,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -6220,7 +6223,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6232,14 +6235,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6268,8 +6271,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:^ @@ -6278,7 +6281,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6290,14 +6293,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6320,8 +6323,8 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:^ @@ -6333,7 +6336,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6345,14 +6348,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6372,14 +6375,14 @@ importers: specifier: ^7946.0.10 version: 7946.0.14 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6391,14 +6394,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6421,14 +6424,14 @@ importers: specifier: ^0.15.3 version: 0.15.3 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6443,14 +6446,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6479,8 +6482,8 @@ importers: specifier: ^3.0.1 version: 3.0.1 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@turf/kinks': specifier: workspace:^ @@ -6489,7 +6492,7 @@ importers: specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6501,14 +6504,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6537,14 +6540,14 @@ importers: specifier: 1.1.2 version: 1.1.2 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.8.1 + version: 2.8.1 devDependencies: '@types/benchmark': specifier: ^2.1.5 version: 2.1.5 '@types/tape': - specifier: ^4.2.32 + specifier: ^4.13.4 version: 4.13.4 benchmark: specifier: ^2.1.4 @@ -6559,14 +6562,14 @@ importers: specifier: ^4.1.5 version: 4.1.5 tape: - specifier: ^5.7.2 - version: 5.7.2 + specifier: ^5.9.0 + version: 5.9.0 tsup: - specifier: ^8.0.1 - version: 8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4) + specifier: ^8.3.5 + version: 8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4) tsx: - specifier: ^4.6.2 - version: 4.6.2 + specifier: ^4.19.2 + version: 4.19.2 typescript: specifier: ^5.5.4 version: 5.5.4 @@ -6576,17 +6579,12 @@ importers: packages: - /@aashutoshrathi/word-wrap@1.2.6: - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - dev: true - - /@ampproject/remapping@2.2.1: - resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} + /@ampproject/remapping@2.3.0: + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 dev: true /@babel/code-frame@7.23.5: @@ -6597,27 +6595,36 @@ packages: chalk: 2.4.2 dev: true - /@babel/compat-data@7.23.5: - resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} + /@babel/code-frame@7.26.2: + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 + picocolors: 1.1.1 + dev: true + + /@babel/compat-data@7.26.2: + resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==} engines: {node: '>=6.9.0'} dev: true - /@babel/core@7.23.5: - resolution: {integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==} + /@babel/core@7.26.0: + resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} engines: {node: '>=6.9.0'} dependencies: - '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helpers': 7.23.5 - '@babel/parser': 7.23.5 - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helpers': 7.26.0 + '@babel/parser': 7.26.2 + '@babel/template': 7.25.9 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 convert-source-map: 2.0.0 - debug: 4.3.4 + debug: 4.3.7 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -6635,70 +6642,84 @@ packages: jsesc: 2.5.2 dev: true - /@babel/helper-annotate-as-pure@7.22.5: - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} + /@babel/generator@7.26.2: + resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.0.2 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: - resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} + /@babel/helper-annotate-as-pure@7.25.9: + resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.26.0 + dev: true + + /@babel/helper-builder-binary-assignment-operator-visitor@7.25.9: + resolution: {integrity: sha512-C47lC7LIDCnz0h4vai/tpNOI95tCd5ZT3iBt/DBH5lXKHZsyNQv18yf1wIIg2ntiQNgmAvA+DgZ82iW8Qdym8g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-compilation-targets@7.22.15: - resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} + /@babel/helper-compilation-targets@7.25.9: + resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/compat-data': 7.23.5 - '@babel/helper-validator-option': 7.23.5 - browserslist: 4.22.2 + '@babel/compat-data': 7.26.2 + '@babel/helper-validator-option': 7.25.9 + browserslist: 4.24.2 lru-cache: 5.1.1 semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin@7.23.5(@babel/core@7.23.5): - resolution: {integrity: sha512-QELlRWxSpgdwdJzSJn4WAhKC+hvw/AtHbbrIoncKHkhKKR/luAlKkgBDcri1EzWAo8f8VvYVryEHN4tax/V67A==} + /@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-member-expression-to-functions': 7.25.9 + '@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.25.9 semver: 6.3.1 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.5): - resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} + /@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-ORPNZ3h6ZRkOyAa/SaHU+XsLZr0UQzRwuDQ0cczIA17nAzZ+85G5cVkOJIj7QavLZGSe8QXUmNFxSZzjcZF9bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + regexpu-core: 6.2.0 semver: 6.3.1 dev: true - /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.5): - resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} + /@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0): + resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - debug: 4.3.4 + '@babel/core': 7.26.0 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + debug: 4.3.7 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: @@ -6725,11 +6746,14 @@ packages: '@babel/types': 7.23.5 dev: true - /@babel/helper-member-expression-to-functions@7.23.0: - resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} + /@babel/helper-member-expression-to-functions@7.25.9: + resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.25.2 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color dev: true /@babel/helper-module-imports@7.22.15: @@ -6739,68 +6763,88 @@ packages: '@babel/types': 7.23.5 dev: true - /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} + /@babel/helper-module-imports@7.25.9: + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/core': 7.26.0 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-optimise-call-expression@7.22.5: - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} + /@babel/helper-optimise-call-expression@7.25.9: + resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.26.0 dev: true - /@babel/helper-plugin-utils@7.22.5: - resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} + /@babel/helper-plugin-utils@7.25.9: + resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.5): - resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} + /@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 + '@babel/core': 7.26.0 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-wrap-function': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.5): - resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} + /@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 + '@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.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-simple-access@7.22.5: - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} + /@babel/helper-simple-access@7.25.9: + resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helper-skip-transparent-expression-wrappers@7.22.5: - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} + /@babel/helper-skip-transparent-expression-wrappers@7.25.9: + resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.5 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color dev: true /@babel/helper-split-export-declaration@7.22.6: @@ -6815,10 +6859,9 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-string-parser@7.24.8: - resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} + /@babel/helper-string-parser@7.25.9: + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} engines: {node: '>=6.9.0'} - requiresBuild: true dev: true /@babel/helper-validator-identifier@7.22.20: @@ -6826,35 +6869,33 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-validator-identifier@7.24.7: - resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} + /@babel/helper-validator-identifier@7.25.9: + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} engines: {node: '>=6.9.0'} - requiresBuild: true dev: true - /@babel/helper-validator-option@7.23.5: - resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} + /@babel/helper-validator-option@7.25.9: + resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} engines: {node: '>=6.9.0'} dev: true - /@babel/helper-wrap-function@7.22.20: - resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} + /@babel/helper-wrap-function@7.25.9: + resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.23.0 - '@babel/template': 7.22.15 - '@babel/types': 7.25.2 + '@babel/template': 7.25.9 + '@babel/traverse': 7.25.9 + '@babel/types': 7.26.0 + transitivePeerDependencies: + - supports-color dev: true - /@babel/helpers@7.23.5: - resolution: {integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==} + /@babel/helpers@7.26.0: + resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.5 - '@babel/types': 7.23.5 - transitivePeerDependencies: - - supports-color + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 dev: true /@babel/highlight@7.23.4: @@ -6879,863 +6920,786 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.25.2 + '@babel/types': 7.26.0 dev: true - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 + /@babel/parser@7.26.2: + resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} + engines: {node: '>=6.0.0'} + hasBin: true dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/types': 7.26.0 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} + /@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.13.0 + '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==} + /@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.5): - resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - dev: true - - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.5): - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.5): - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.5): - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0) + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} + /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0): + resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.5): - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.5): - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.5): - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.5): - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 dev: true - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.5): - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + /@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.5): - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + /@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.5): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} + /@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==} + /@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} + /@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0) + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} + /@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} + /@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} + /@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@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 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} + /@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5) + '@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 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.5): - resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==} + /@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) - '@babel/helper-split-export-declaration': 7.22.6 + '@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-replace-supers': 7.25.9(@babel/core@7.26.0) + '@babel/traverse': 7.25.9 globals: 11.12.0 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} + /@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.15 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/template': 7.25.9 dev: true - /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} + /@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} + /@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} + /@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + dev: true + + /@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} + /@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} + /@babel/plugin-transform-exponentiation-operator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-KRhdhlVk2nObA5AYa7QMgTMTVJdfHprfpAk4DjZVtllqRg9qarilstTKEhpVjyt+Npi8ThRyiV8176Am3CodPA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} + /@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-for-of@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==} + /@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} + /@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} + /@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} + /@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} + /@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} + /@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} + /@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} + /@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 + '@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-simple-access': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} + /@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.20 + '@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-validator-identifier': 7.25.9 + '@babel/traverse': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} + /@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.5): - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} + /@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} + /@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} + /@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} + /@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==} + /@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) dev: true - /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} + /@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0) + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} + /@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==} + /@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} + /@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} + /@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@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 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.5): - resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} + /@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5) + '@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 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} + /@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} + /@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} + /@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 + dev: true + + /@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} + /@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} + /@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} + /@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} + /@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} + /@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} + /@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} + /@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} + /@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.5): - resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} + /@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0): + resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.26.0 + '@babel/helper-create-regexp-features-plugin': 7.25.9(@babel/core@7.26.0) + '@babel/helper-plugin-utils': 7.25.9 dev: true - /@babel/preset-env@7.23.5(@babel/core@7.23.5): - resolution: {integrity: sha512-0d/uxVD6tFGWXGDSfyMD1p2otoaKmu6+GD+NfAx0tMaH+dxORnp7T9TaVQ6mKyya7iBtCIVxHjWT7MuzzM9z+A==} + /@babel/preset-env@7.26.0(@babel/core@7.26.0): + resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.5) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-async-generator-functions': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.5) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.5) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.5) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.5) - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.5) - babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.5) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.5) - core-js-compat: 3.34.0 + '@babel/compat-data': 7.26.2 + '@babel/core': 7.26.0 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@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) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0) + '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0) + '@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-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-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) + '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-exponentiation-operator': 7.25.9(@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-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) + '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0) + '@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-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) + '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0) + '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0) + '@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-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-regenerator: 0.6.3(@babel/core@7.26.0) + core-js-compat: 3.39.0 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.5): + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0): resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.23.5 + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/types': 7.26.0 esutils: 2.0.3 dev: true - /@babel/regjsgen@0.8.0: - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - dev: true - - /@babel/runtime@7.23.5: - resolution: {integrity: sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==} + /@babel/runtime@7.26.0: + resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} engines: {node: '>=6.9.0'} dependencies: - regenerator-runtime: 0.14.0 + regenerator-runtime: 0.14.1 dev: true /@babel/template@7.22.15: @@ -7747,6 +7711,15 @@ packages: '@babel/types': 7.23.5 dev: true + /@babel/template@7.25.9: + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/types': 7.26.0 + dev: true + /@babel/traverse@7.23.5: resolution: {integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==} engines: {node: '>=6.9.0'} @@ -7759,7 +7732,22 @@ packages: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.23.5 '@babel/types': 7.23.5 - debug: 4.3.4 + debug: 4.3.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/traverse@7.25.9: + resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.2 + '@babel/parser': 7.26.2 + '@babel/template': 7.25.9 + '@babel/types': 7.26.0 + debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -7774,13 +7762,12 @@ packages: to-fast-properties: 2.0.0 dev: true - /@babel/types@7.25.2: - resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==} + /@babel/types@7.26.0: + resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.24.8 - '@babel/helper-validator-identifier': 7.24.7 - to-fast-properties: 2.0.0 + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 dev: true /@colors/colors@1.6.0: @@ -7804,435 +7791,478 @@ packages: node-source-walk: 7.0.0 dev: true - /@esbuild/aix-ppc64@0.19.11: - resolution: {integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==} - engines: {node: '>=12'} + /@esbuild/aix-ppc64@0.23.1: + resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==} + engines: {node: '>=18'} cpu: [ppc64] os: [aix] requiresBuild: true dev: true optional: true - /@esbuild/android-arm64@0.18.20: - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} - engines: {node: '>=12'} + /@esbuild/aix-ppc64@0.24.0: + resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64@0.23.1: + resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==} + engines: {node: '>=18'} cpu: [arm64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm64@0.19.11: - resolution: {integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==} - engines: {node: '>=12'} + /@esbuild/android-arm64@0.24.0: + resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==} + engines: {node: '>=18'} cpu: [arm64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm@0.18.20: - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} - engines: {node: '>=12'} + /@esbuild/android-arm@0.23.1: + resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==} + engines: {node: '>=18'} cpu: [arm] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-arm@0.19.11: - resolution: {integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==} - engines: {node: '>=12'} + /@esbuild/android-arm@0.24.0: + resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==} + engines: {node: '>=18'} cpu: [arm] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-x64@0.18.20: - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} - engines: {node: '>=12'} + /@esbuild/android-x64@0.23.1: + resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==} + engines: {node: '>=18'} cpu: [x64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/android-x64@0.19.11: - resolution: {integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==} - engines: {node: '>=12'} + /@esbuild/android-x64@0.24.0: + resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==} + engines: {node: '>=18'} cpu: [x64] os: [android] requiresBuild: true dev: true optional: true - /@esbuild/darwin-arm64@0.18.20: - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} - engines: {node: '>=12'} + /@esbuild/darwin-arm64@0.23.1: + resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==} + engines: {node: '>=18'} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /@esbuild/darwin-arm64@0.19.11: - resolution: {integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==} - engines: {node: '>=12'} + /@esbuild/darwin-arm64@0.24.0: + resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==} + engines: {node: '>=18'} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /@esbuild/darwin-x64@0.18.20: - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} - engines: {node: '>=12'} + /@esbuild/darwin-x64@0.23.1: + resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==} + engines: {node: '>=18'} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /@esbuild/darwin-x64@0.19.11: - resolution: {integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==} - engines: {node: '>=12'} + /@esbuild/darwin-x64@0.24.0: + resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==} + engines: {node: '>=18'} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /@esbuild/freebsd-arm64@0.18.20: - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} - engines: {node: '>=12'} + /@esbuild/freebsd-arm64@0.23.1: + resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==} + engines: {node: '>=18'} cpu: [arm64] os: [freebsd] requiresBuild: true dev: true optional: true - /@esbuild/freebsd-arm64@0.19.11: - resolution: {integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==} - engines: {node: '>=12'} + /@esbuild/freebsd-arm64@0.24.0: + resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==} + engines: {node: '>=18'} cpu: [arm64] os: [freebsd] requiresBuild: true dev: true optional: true - /@esbuild/freebsd-x64@0.18.20: - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} - engines: {node: '>=12'} + /@esbuild/freebsd-x64@0.23.1: + resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==} + engines: {node: '>=18'} cpu: [x64] os: [freebsd] requiresBuild: true dev: true optional: true - /@esbuild/freebsd-x64@0.19.11: - resolution: {integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==} - engines: {node: '>=12'} + /@esbuild/freebsd-x64@0.24.0: + resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==} + engines: {node: '>=18'} cpu: [x64] os: [freebsd] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm64@0.18.20: - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} - engines: {node: '>=12'} + /@esbuild/linux-arm64@0.23.1: + resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==} + engines: {node: '>=18'} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm64@0.19.11: - resolution: {integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==} - engines: {node: '>=12'} + /@esbuild/linux-arm64@0.24.0: + resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==} + engines: {node: '>=18'} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm@0.18.20: - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} - engines: {node: '>=12'} + /@esbuild/linux-arm@0.23.1: + resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==} + engines: {node: '>=18'} cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-arm@0.19.11: - resolution: {integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==} - engines: {node: '>=12'} + /@esbuild/linux-arm@0.24.0: + resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==} + engines: {node: '>=18'} cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ia32@0.18.20: - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} - engines: {node: '>=12'} + /@esbuild/linux-ia32@0.23.1: + resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==} + engines: {node: '>=18'} cpu: [ia32] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ia32@0.19.11: - resolution: {integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==} - engines: {node: '>=12'} + /@esbuild/linux-ia32@0.24.0: + resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==} + engines: {node: '>=18'} cpu: [ia32] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-loong64@0.18.20: - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} - engines: {node: '>=12'} + /@esbuild/linux-loong64@0.23.1: + resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==} + engines: {node: '>=18'} cpu: [loong64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-loong64@0.19.11: - resolution: {integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==} - engines: {node: '>=12'} + /@esbuild/linux-loong64@0.24.0: + resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==} + engines: {node: '>=18'} cpu: [loong64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-mips64el@0.18.20: - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} - engines: {node: '>=12'} + /@esbuild/linux-mips64el@0.23.1: + resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==} + engines: {node: '>=18'} cpu: [mips64el] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-mips64el@0.19.11: - resolution: {integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==} - engines: {node: '>=12'} + /@esbuild/linux-mips64el@0.24.0: + resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==} + engines: {node: '>=18'} cpu: [mips64el] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ppc64@0.18.20: - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} - engines: {node: '>=12'} + /@esbuild/linux-ppc64@0.23.1: + resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==} + engines: {node: '>=18'} cpu: [ppc64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ppc64@0.19.11: - resolution: {integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==} - engines: {node: '>=12'} + /@esbuild/linux-ppc64@0.24.0: + resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==} + engines: {node: '>=18'} cpu: [ppc64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-riscv64@0.18.20: - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} - engines: {node: '>=12'} + /@esbuild/linux-riscv64@0.23.1: + resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==} + engines: {node: '>=18'} cpu: [riscv64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-riscv64@0.19.11: - resolution: {integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==} - engines: {node: '>=12'} + /@esbuild/linux-riscv64@0.24.0: + resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==} + engines: {node: '>=18'} cpu: [riscv64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-s390x@0.18.20: - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} - engines: {node: '>=12'} + /@esbuild/linux-s390x@0.23.1: + resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==} + engines: {node: '>=18'} cpu: [s390x] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-s390x@0.19.11: - resolution: {integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==} - engines: {node: '>=12'} + /@esbuild/linux-s390x@0.24.0: + resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==} + engines: {node: '>=18'} cpu: [s390x] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-x64@0.18.20: - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} - engines: {node: '>=12'} + /@esbuild/linux-x64@0.23.1: + resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==} + engines: {node: '>=18'} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-x64@0.19.11: - resolution: {integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==} - engines: {node: '>=12'} + /@esbuild/linux-x64@0.24.0: + resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==} + engines: {node: '>=18'} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/netbsd-x64@0.18.20: - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} - engines: {node: '>=12'} + /@esbuild/netbsd-x64@0.23.1: + resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==} + engines: {node: '>=18'} cpu: [x64] os: [netbsd] requiresBuild: true dev: true optional: true - /@esbuild/netbsd-x64@0.19.11: - resolution: {integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==} - engines: {node: '>=12'} + /@esbuild/netbsd-x64@0.24.0: + resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==} + engines: {node: '>=18'} cpu: [x64] os: [netbsd] requiresBuild: true dev: true optional: true - /@esbuild/openbsd-x64@0.18.20: - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} - engines: {node: '>=12'} + /@esbuild/openbsd-arm64@0.23.1: + resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-arm64@0.24.0: + resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64@0.23.1: + resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==} + engines: {node: '>=18'} cpu: [x64] os: [openbsd] requiresBuild: true dev: true optional: true - /@esbuild/openbsd-x64@0.19.11: - resolution: {integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==} - engines: {node: '>=12'} + /@esbuild/openbsd-x64@0.24.0: + resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==} + engines: {node: '>=18'} cpu: [x64] os: [openbsd] requiresBuild: true dev: true optional: true - /@esbuild/sunos-x64@0.18.20: - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} - engines: {node: '>=12'} + /@esbuild/sunos-x64@0.23.1: + resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==} + engines: {node: '>=18'} cpu: [x64] os: [sunos] requiresBuild: true dev: true optional: true - /@esbuild/sunos-x64@0.19.11: - resolution: {integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==} - engines: {node: '>=12'} + /@esbuild/sunos-x64@0.24.0: + resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==} + engines: {node: '>=18'} cpu: [x64] os: [sunos] requiresBuild: true dev: true optional: true - /@esbuild/win32-arm64@0.18.20: - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} - engines: {node: '>=12'} + /@esbuild/win32-arm64@0.23.1: + resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==} + engines: {node: '>=18'} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /@esbuild/win32-arm64@0.19.11: - resolution: {integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==} - engines: {node: '>=12'} + /@esbuild/win32-arm64@0.24.0: + resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==} + engines: {node: '>=18'} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /@esbuild/win32-ia32@0.18.20: - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} - engines: {node: '>=12'} + /@esbuild/win32-ia32@0.23.1: + resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==} + engines: {node: '>=18'} cpu: [ia32] os: [win32] requiresBuild: true dev: true optional: true - /@esbuild/win32-ia32@0.19.11: - resolution: {integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==} - engines: {node: '>=12'} + /@esbuild/win32-ia32@0.24.0: + resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==} + engines: {node: '>=18'} cpu: [ia32] os: [win32] requiresBuild: true dev: true optional: true - /@esbuild/win32-x64@0.18.20: - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} - engines: {node: '>=12'} + /@esbuild/win32-x64@0.23.1: + resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==} + engines: {node: '>=18'} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /@esbuild/win32-x64@0.19.11: - resolution: {integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==} - engines: {node: '>=12'} + /@esbuild/win32-x64@0.24.0: + resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==} + engines: {node: '>=18'} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.55.0): - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + /@eslint-community/eslint-utils@4.4.1(eslint@9.16.0): + resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.55.0 + eslint: 9.16.0 eslint-visitor-keys: 3.4.3 dev: true - /@eslint-community/regexpp@4.10.0: - resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} + /@eslint-community/regexpp@4.12.1: + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} dev: true - /@eslint/eslintrc@2.1.4: - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@eslint/config-array@0.19.0: + resolution: {integrity: sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dependencies: + '@eslint/object-schema': 2.1.4 + debug: 4.3.7 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/core@0.9.0: + resolution: {integrity: sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true + + /@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} dependencies: ajv: 6.12.6 - debug: 4.3.4 - espree: 9.6.1 - globals: 13.23.0 - ignore: 5.3.0 + debug: 4.3.7 + espree: 10.3.0 + globals: 14.0.0 + ignore: 5.3.2 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -8241,9 +8271,21 @@ packages: - supports-color dev: true - /@eslint/js@8.55.0: - resolution: {integrity: sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /@eslint/js@9.16.0: + resolution: {integrity: sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true + + /@eslint/object-schema@2.1.4: + resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true + + /@eslint/plugin-kit@0.2.3: + resolution: {integrity: sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dependencies: + levn: 0.4.1 dev: true /@gwhitney/detect-indent@7.0.1: @@ -8251,15 +8293,17 @@ packages: engines: {node: '>=12.20'} dev: true - /@humanwhocodes/config-array@0.11.13: - resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} - engines: {node: '>=10.10.0'} + /@humanfs/core@0.19.1: + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + dev: true + + /@humanfs/node@0.16.6: + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} dependencies: - '@humanwhocodes/object-schema': 2.0.1 - debug: 4.3.4 - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 dev: true /@humanwhocodes/module-importer@1.0.1: @@ -8267,8 +8311,14 @@ packages: engines: {node: '>=12.22'} dev: true - /@humanwhocodes/object-schema@2.0.1: - resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} + /@humanwhocodes/retry@0.3.1: + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + dev: true + + /@humanwhocodes/retry@0.4.1: + resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} + engines: {node: '>=18.18'} dev: true /@hutson/parse-repository-url@3.0.2: @@ -8308,16 +8358,35 @@ packages: '@jridgewell/trace-mapping': 0.3.20 dev: true + /@jridgewell/gen-mapping@0.3.5: + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 + dev: true + /@jridgewell/resolve-uri@3.1.1: resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} dev: true + /@jridgewell/resolve-uri@3.1.2: + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + dev: true + /@jridgewell/set-array@1.1.2: resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} dev: true + /@jridgewell/set-array@1.2.1: + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + dev: true + /@jridgewell/source-map@0.3.5: resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} dependencies: @@ -8341,11 +8410,18 @@ packages: '@jridgewell/sourcemap-codec': 1.4.15 dev: true - /@lerna/create@8.1.7(typescript@5.5.4): - resolution: {integrity: sha512-ch81CgU5pBNOiUCQx44F/ZtN4DxxJjUQtuytYRBFWJSHAJ+XPJtiC/yQ9zjr1I1yaUlmNYYblkopoOyziOdJ1w==} + /@jridgewell/trace-mapping@0.3.25: + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + dev: true + + /@lerna/create@8.1.9(typescript@5.5.4): + resolution: {integrity: sha512-DPnl5lPX4v49eVxEbJnAizrpMdMTBz1qykZrAbBul9rfgk531v8oAt+Pm6O/rpAleRombNM7FJb5rYGzBJatOQ==} engines: {node: '>=18.0.0'} dependencies: - '@npmcli/arborist': 7.5.3 + '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.0 '@npmcli/run-script': 8.1.0 '@nx/devkit': 19.1.1(nx@19.1.1) @@ -8361,7 +8437,7 @@ packages: console-control-strings: 1.1.0 conventional-changelog-core: 5.0.1 conventional-recommended-bump: 7.0.1 - cosmiconfig: 8.3.6(typescript@5.5.4) + cosmiconfig: 9.0.0(typescript@5.5.4) dedent: 1.5.3 execa: 5.0.0 fs-extra: 11.2.0 @@ -8427,77 +8503,78 @@ packages: - typescript dev: true - /@ljharb/resumer@0.0.1: - resolution: {integrity: sha512-skQiAOrCfO7vRTq53cxznMpks7wS1va95UCidALlOVWqvBAzwPVErwizDwoMqNVMEn1mDq0utxZd02eIrvF1lw==} + /@ljharb/resumer@0.1.3: + resolution: {integrity: sha512-d+tsDgfkj9X5QTriqM4lKesCkMMJC3IrbPKHvayP00ELx2axdXvDfWkqjxrLXIzGcQzmj7VAUT1wopqARTvafw==} engines: {node: '>= 0.4'} dependencies: - '@ljharb/through': 2.3.11 + '@ljharb/through': 2.3.13 + call-bind: 1.0.7 dev: true - /@ljharb/through@2.3.11: - resolution: {integrity: sha512-ccfcIDlogiXNq5KcbAwbaO7lMh3Tm1i3khMPYpxlK8hH/W53zN81KM9coerRLOnTGu3nfXIniAmQbRI9OxbC0w==} + /@ljharb/through@2.3.13: + resolution: {integrity: sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 dev: true - /@monorepolint/cli@0.5.0-alpha.132: - resolution: {integrity: sha512-6R7qK2SLpKENaby2GKXUUUhhwEnYjIEHfwNB4A6PtTh3qdlNG2DQjFeyZb4N/gU7ehiHQHZIM6AgYdU1VP+XoA==} + /@monorepolint/cli@0.5.0: + resolution: {integrity: sha512-8yLqmxe2tLDOF5+36gYf6/1EhNe3Wfk64dGnak/3xuR9OhCFg+JzRA3YmL0ZtyZNxUOv1D5TGJlTeRmoRlo8ug==} engines: {node: '>=18'} hasBin: true dependencies: - '@monorepolint/config': 0.5.0-alpha.132 - '@monorepolint/core': 0.5.0-alpha.132 - '@monorepolint/utils': 0.5.0-alpha.132 + '@monorepolint/config': 0.5.0 + '@monorepolint/core': 0.5.0 + '@monorepolint/utils': 0.5.0 chalk: 5.3.0 - tslib: 2.6.2 + tslib: 2.8.1 yargs: 17.7.2 dev: true - /@monorepolint/config@0.5.0-alpha.132: - resolution: {integrity: sha512-pSxzhB2jTEjO3jDDjeopNDhV+cJ7ILHIYNuUeAEJD4+HOLLZZRhkU3yr+ucKTAEmi+RrrBWcUa8TFFRJdHvoWQ==} + /@monorepolint/config@0.5.0: + resolution: {integrity: sha512-y3dMd1iGWPERZTVHUt4Ahmup/Z+qbGqXr+lLe2mGRnGlxZZudvjpEEKpRkgy6/DAKRSdIB8sg/ilL/pvAOjbEQ==} engines: {node: '>=18'} dependencies: - '@monorepolint/utils': 0.5.0-alpha.132 + '@monorepolint/utils': 0.5.0 chalk: 5.3.0 - tslib: 2.6.2 + tslib: 2.8.1 dev: true - /@monorepolint/core@0.5.0-alpha.132: - resolution: {integrity: sha512-ZjTTTU/xEz3cLyY3MSPffYKfs2/WSpHpOqgANGAxXRHSre/Xzp7dORlZYbVfwqLERO0St1t/Hxl6l45/BvOEYg==} + /@monorepolint/core@0.5.0: + resolution: {integrity: sha512-rKkfIIUEVofoS5AVHOM6VlYR8O5nUJC7OgbO2uQK0gTrUp9gg/046YLgC5M5TufWWGoFU2idnBjyqcXbobbk0w==} engines: {node: '>=18'} dependencies: - '@monorepolint/config': 0.5.0-alpha.132 - '@monorepolint/utils': 0.5.0-alpha.132 + '@monorepolint/config': 0.5.0 + '@monorepolint/utils': 0.5.0 chalk: 5.3.0 - tslib: 2.6.2 + tslib: 2.8.1 dev: true - /@monorepolint/rules@0.5.0-alpha.132: - resolution: {integrity: sha512-HxsQUYTeQBKcTQ0WNgASXfwBYGnfht356nxApfCVG26k0iaFgkLb6VN7uxV56y/cS5eNMiGKRIQY1RLhoLn9Hg==} + /@monorepolint/rules@0.5.0: + resolution: {integrity: sha512-/Jrm46TUG2VGV+xcE9VjSssvFRoCV8Dtzn5Okay+fDzj7C6rQ7Xzz92LO/XSxW7GYgEi3p5j3+fhvkqGA4zitg==} engines: {node: '>=18'} dependencies: - '@monorepolint/config': 0.5.0-alpha.132 - '@monorepolint/core': 0.5.0-alpha.132 - '@monorepolint/utils': 0.5.0-alpha.132 - globby: 14.0.0 + '@monorepolint/config': 0.5.0 + '@monorepolint/core': 0.5.0 + '@monorepolint/utils': 0.5.0 + globby: 14.0.2 jest-diff: 29.7.0 resolve-package-path: 4.0.3 runtypes: 6.7.0 - semver: 7.5.4 - tslib: 2.6.2 + semver: 7.6.3 + tslib: 2.8.1 dev: true - /@monorepolint/utils@0.5.0-alpha.132: - resolution: {integrity: sha512-zLtWpQPFwIfjBZbhkHvyPCREEM8wo+Vr7iUhG2se8JECju/MlodRAhaOllUFlQ5la0gtEfYGqFKpIinYeYq6Cw==} + /@monorepolint/utils@0.5.0: + resolution: {integrity: sha512-KOLkGNLJ4oQSBUOIRvlCGi+lZfkEXS5kRt+8meR9jqxIgo0knTbBKAA9bCRPUSpx5UFZ7Z3JXKBArE05zSQpwA==} engines: {node: '>=18'} dependencies: find-packages: 10.0.4 find-up: 7.0.0 - glob: 10.3.10 - micromatch: 4.0.5 + glob: 10.4.5 + micromatch: 4.0.8 read-yaml-file: 2.1.0 - tslib: 2.6.2 + tslib: 2.8.1 dev: true /@nodelib/fs.scandir@2.1.5: @@ -8534,8 +8611,8 @@ packages: - supports-color dev: true - /@npmcli/arborist@7.5.3: - resolution: {integrity: sha512-7gbMdDNSYUzi0j2mpb6FoXRg3BxXWplMQZH1MZlvNjSdWFObaUz2Ssvo0Nlh2xmWks1OPo+gpsE6qxpT/5M7lQ==} + /@npmcli/arborist@7.5.4: + resolution: {integrity: sha512-nWtIc6QwwoUORCRNzKx4ypHqCk3drI+5aeYdMTQQiRCcn4lOOgfQh7WyZobGYTxXPSq1VwV53lkpN/BRlRk08g==} engines: {node: ^16.14.0 || >=18.0.0} hasBin: true dependencies: @@ -8551,24 +8628,24 @@ packages: '@npmcli/redact': 2.0.1 '@npmcli/run-script': 8.1.0 bin-links: 4.0.4 - cacache: 18.0.3 + cacache: 18.0.4 common-ancestor-path: 1.0.1 hosted-git-info: 7.0.2 json-parse-even-better-errors: 3.0.2 json-stringify-nice: 1.1.4 lru-cache: 10.4.3 - minimatch: 9.0.4 + minimatch: 9.0.5 nopt: 7.2.1 npm-install-checks: 6.3.0 npm-package-arg: 11.0.2 - npm-pick-manifest: 9.0.1 + npm-pick-manifest: 9.1.0 npm-registry-fetch: 17.1.0 pacote: 18.0.6 parse-conflict-json: 3.0.1 proc-log: 4.2.0 proggy: 2.0.0 promise-all-reject-late: 1.0.1 - promise-call-limit: 3.0.1 + promise-call-limit: 3.0.2 read-package-json-fast: 3.0.2 semver: 7.6.3 ssri: 10.0.6 @@ -8623,7 +8700,7 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true dependencies: - npm-bundled: 3.0.0 + npm-bundled: 3.0.1 npm-normalize-package-bin: 3.0.1 dev: true @@ -8633,7 +8710,7 @@ packages: dependencies: '@npmcli/name-from-folder': 2.0.0 glob: 10.3.10 - minimatch: 9.0.4 + minimatch: 9.0.5 read-package-json-fast: 3.0.2 dev: true @@ -8641,7 +8718,7 @@ packages: resolution: {integrity: sha512-Nkxf96V0lAx3HCpVda7Vw4P23RILgdi/5K1fmj2tZkWIYLpXAN8k2UVVOsW16TsS5F8Ws2I7Cm+PU1/rsVF47g==} engines: {node: ^16.14.0 || >=18.0.0} dependencies: - cacache: 18.0.3 + cacache: 18.0.4 json-parse-even-better-errors: 3.0.2 pacote: 18.0.6 proc-log: 4.2.0 @@ -8687,7 +8764,7 @@ packages: resolution: {integrity: sha512-C/iR0tk7KSKGldibYIB9x8GtO/0Bd0I2mhOaDb8ucQL/bQVTmGoeREaFj64Z5+iCBRf3dQfed0CjJL7I8iTkiQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - postcss-selector-parser: 6.1.1 + postcss-selector-parser: 6.1.2 dev: true /@npmcli/redact@2.0.1: @@ -8723,7 +8800,7 @@ packages: hasBin: true dependencies: nx: 19.1.1 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -8743,7 +8820,7 @@ packages: nx: 19.1.1 semver: 7.6.3 tmp: 0.2.1 - tslib: 2.6.2 + tslib: 2.8.1 yargs-parser: 21.1.1 dev: true @@ -8972,16 +9049,9 @@ packages: dev: true optional: true - /@pkgr/utils@2.4.2: - resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==} + /@pkgr/core@0.1.1: + resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - dependencies: - cross-spawn: 7.0.3 - fast-glob: 3.3.2 - is-glob: 4.0.3 - open: 9.1.0 - picocolors: 1.0.0 - tslib: 2.6.2 dev: true /@placemarkio/check-geojson@0.1.12: @@ -9055,7 +9125,7 @@ packages: write-yaml-file: 4.2.0 dev: true - /@rollup/plugin-babel@6.0.4(@babel/core@7.23.5)(rollup@3.29.5): + /@rollup/plugin-babel@6.0.4(@babel/core@7.26.0)(rollup@4.28.0): resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==} engines: {node: '>=14.0.0'} peerDependencies: @@ -9068,31 +9138,32 @@ packages: rollup: optional: true dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.26.0 '@babel/helper-module-imports': 7.22.15 - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) - rollup: 3.29.5 + '@rollup/pluginutils': 5.1.0(rollup@4.28.0) + rollup: 4.28.0 dev: true - /@rollup/plugin-commonjs@25.0.7(rollup@3.29.5): - resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==} - engines: {node: '>=14.0.0'} + /@rollup/plugin-commonjs@28.0.1(rollup@4.28.0): + resolution: {integrity: sha512-+tNWdlWKbpB3WgBN7ijjYkq9X5uhjmcvyjEght4NmH5fAU++zfQzAJ6wumLS+dNcvwEZhKx2Z+skY8m7v0wGSA==} + engines: {node: '>=16.0.0 || 14 >= 14.17'} peerDependencies: rollup: ^2.68.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) + '@rollup/pluginutils': 5.1.3(rollup@4.28.0) commondir: 1.0.1 estree-walker: 2.0.2 - glob: 8.1.0 + fdir: 6.4.2(picomatch@4.0.2) is-reference: 1.2.1 - magic-string: 0.30.5 - rollup: 3.29.5 + magic-string: 0.30.14 + picomatch: 4.0.2 + rollup: 4.28.0 dev: true - /@rollup/plugin-inject@5.0.5(rollup@3.29.5): + /@rollup/plugin-inject@5.0.5(rollup@4.28.0): resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==} engines: {node: '>=14.0.0'} peerDependencies: @@ -9101,14 +9172,14 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) + '@rollup/pluginutils': 5.1.0(rollup@4.28.0) estree-walker: 2.0.2 magic-string: 0.30.5 - rollup: 3.29.5 + rollup: 4.28.0 dev: true - /@rollup/plugin-node-resolve@15.2.3(rollup@3.29.5): - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} + /@rollup/plugin-node-resolve@15.3.0(rollup@4.28.0): + resolution: {integrity: sha512-9eO5McEICxMzJpDW9OnMYSv4Sta3hmt7VtBFz5zR9273suNOydOyq/FrGeGy+KsTRFm8w0SLVhzig2ILFT63Ag==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.78.0||^3.0.0||^4.0.0 @@ -9116,16 +9187,15 @@ packages: rollup: optional: true dependencies: - '@rollup/pluginutils': 5.1.0(rollup@3.29.5) + '@rollup/pluginutils': 5.1.3(rollup@4.28.0) '@types/resolve': 1.20.2 deepmerge: 4.3.1 - is-builtin-module: 3.2.1 is-module: 1.0.0 resolve: 1.22.8 - rollup: 3.29.5 + rollup: 4.28.0 dev: true - /@rollup/plugin-terser@0.4.4(rollup@3.29.5): + /@rollup/plugin-terser@0.4.4(rollup@4.28.0): resolution: {integrity: sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==} engines: {node: '>=14.0.0'} peerDependencies: @@ -9134,13 +9204,13 @@ packages: rollup: optional: true dependencies: - rollup: 3.29.5 + rollup: 4.28.0 serialize-javascript: 6.0.1 smob: 1.4.1 terser: 5.26.0 dev: true - /@rollup/pluginutils@5.1.0(rollup@3.29.5): + /@rollup/pluginutils@5.1.0(rollup@4.28.0): resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} engines: {node: '>=14.0.0'} peerDependencies: @@ -9152,107 +9222,162 @@ packages: '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 - rollup: 3.29.5 + rollup: 4.28.0 + dev: true + + /@rollup/pluginutils@5.1.3(rollup@4.28.0): + resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@types/estree': 1.0.6 + estree-walker: 2.0.2 + picomatch: 4.0.2 + rollup: 4.28.0 dev: true - /@rollup/rollup-android-arm-eabi@4.9.0: - resolution: {integrity: sha512-+1ge/xmaJpm1KVBuIH38Z94zj9fBD+hp+/5WLaHgyY8XLq1ibxk/zj6dTXaqM2cAbYKq8jYlhHd6k05If1W5xA==} + /@rollup/rollup-android-arm-eabi@4.28.0: + resolution: {integrity: sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==} cpu: [arm] os: [android] requiresBuild: true dev: true optional: true - /@rollup/rollup-android-arm64@4.9.0: - resolution: {integrity: sha512-im6hUEyQ7ZfoZdNvtwgEJvBWZYauC9KVKq1w58LG2Zfz6zMd8gRrbN+xCVoqA2hv/v6fm9lp5LFGJ3za8EQH3A==} + /@rollup/rollup-android-arm64@4.28.0: + resolution: {integrity: sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==} cpu: [arm64] os: [android] requiresBuild: true dev: true optional: true - /@rollup/rollup-darwin-arm64@4.9.0: - resolution: {integrity: sha512-u7aTMskN6Dmg1lCT0QJ+tINRt+ntUrvVkhbPfFz4bCwRZvjItx2nJtwJnJRlKMMaQCHRjrNqHRDYvE4mBm3DlQ==} + /@rollup/rollup-darwin-arm64@4.28.0: + resolution: {integrity: sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /@rollup/rollup-darwin-x64@4.9.0: - resolution: {integrity: sha512-8FvEl3w2ExmpcOmX5RJD0yqXcVSOqAJJUJ29Lca29Ik+3zPS1yFimr2fr5JSZ4Z5gt8/d7WqycpgkX9nocijSw==} + /@rollup/rollup-darwin-x64@4.28.0: + resolution: {integrity: sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-arm-gnueabihf@4.9.0: - resolution: {integrity: sha512-lHoKYaRwd4gge+IpqJHCY+8Vc3hhdJfU6ukFnnrJasEBUvVlydP8PuwndbWfGkdgSvZhHfSEw6urrlBj0TSSfg==} + /@rollup/rollup-freebsd-arm64@4.28.0: + resolution: {integrity: sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-freebsd-x64@4.28.0: + resolution: {integrity: sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm-gnueabihf@4.28.0: + resolution: {integrity: sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==} cpu: [arm] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-arm64-gnu@4.9.0: - resolution: {integrity: sha512-JbEPfhndYeWHfOSeh4DOFvNXrj7ls9S/2omijVsao+LBPTPayT1uKcK3dHW3MwDJ7KO11t9m2cVTqXnTKpeaiw==} + /@rollup/rollup-linux-arm-musleabihf@4.28.0: + resolution: {integrity: sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm64-gnu@4.28.0: + resolution: {integrity: sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-arm64-musl@4.9.0: - resolution: {integrity: sha512-ahqcSXLlcV2XUBM3/f/C6cRoh7NxYA/W7Yzuv4bDU1YscTFw7ay4LmD7l6OS8EMhTNvcrWGkEettL1Bhjf+B+w==} + /@rollup/rollup-linux-arm64-musl@4.28.0: + resolution: {integrity: sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-riscv64-gnu@4.9.0: - resolution: {integrity: sha512-uwvOYNtLw8gVtrExKhdFsYHA/kotURUmZYlinH2VcQxNCQJeJXnkmWgw2hI9Xgzhgu7J9QvWiq9TtTVwWMDa+w==} + /@rollup/rollup-linux-powerpc64le-gnu@4.28.0: + resolution: {integrity: sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-riscv64-gnu@4.28.0: + resolution: {integrity: sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==} cpu: [riscv64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-x64-gnu@4.9.0: - resolution: {integrity: sha512-m6pkSwcZZD2LCFHZX/zW2aLIISyzWLU3hrLLzQKMI12+OLEzgruTovAxY5sCZJkipklaZqPy/2bEEBNjp+Y7xg==} + /@rollup/rollup-linux-s390x-gnu@4.28.0: + resolution: {integrity: sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-x64-gnu@4.28.0: + resolution: {integrity: sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-linux-x64-musl@4.9.0: - resolution: {integrity: sha512-VFAC1RDRSbU3iOF98X42KaVicAfKf0m0OvIu8dbnqhTe26Kh6Ym9JrDulz7Hbk7/9zGc41JkV02g+p3BivOdAg==} + /@rollup/rollup-linux-x64-musl@4.28.0: + resolution: {integrity: sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@rollup/rollup-win32-arm64-msvc@4.9.0: - resolution: {integrity: sha512-9jPgMvTKXARz4inw6jezMLA2ihDBvgIU9Ml01hjdVpOcMKyxFBJrn83KVQINnbeqDv0+HdO1c09hgZ8N0s820Q==} + /@rollup/rollup-win32-arm64-msvc@4.28.0: + resolution: {integrity: sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /@rollup/rollup-win32-ia32-msvc@4.9.0: - resolution: {integrity: sha512-WE4pT2kTXQN2bAv40Uog0AsV7/s9nT9HBWXAou8+++MBCnY51QS02KYtm6dQxxosKi1VIz/wZIrTQO5UP2EW+Q==} + /@rollup/rollup-win32-ia32-msvc@4.28.0: + resolution: {integrity: sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==} cpu: [ia32] os: [win32] requiresBuild: true dev: true optional: true - /@rollup/rollup-win32-x64-msvc@4.9.0: - resolution: {integrity: sha512-aPP5Q5AqNGuT0tnuEkK/g4mnt3ZhheiXrDIiSVIHN9mcN21OyXDVbEMqmXPE7e2OplNLDkcvV+ZoGJa2ZImFgw==} + /@rollup/rollup-win32-x64-msvc@4.28.0: + resolution: {integrity: sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==} cpu: [x64] os: [win32] requiresBuild: true @@ -9313,8 +9438,8 @@ packages: resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} dev: true - /@sindresorhus/merge-streams@1.0.0: - resolution: {integrity: sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==} + /@sindresorhus/merge-streams@2.3.0: + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} engines: {node: '>=18'} dev: true @@ -9328,7 +9453,7 @@ packages: engines: {node: ^16.14.0 || >=18.0.0} dependencies: '@tufjs/canonical-json': 2.0.0 - minimatch: 9.0.4 + minimatch: 9.0.5 dev: true /@turf/jsts@2.7.1: @@ -9359,6 +9484,10 @@ packages: resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} dev: true + /@types/estree@1.0.6: + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + dev: true + /@types/extend@3.0.4: resolution: {integrity: sha512-ArMouDUTJEz1SQRpFsT2rIw7DeqICFv5aaVzLSIYMYQSLcwcGOfT3VyglQs/p7K3F7fT4zxr0NWxYZIdifD6dA==} dev: true @@ -9418,10 +9547,6 @@ packages: resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} dev: true - /@types/semver@7.5.6: - resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} - dev: true - /@types/skmeans@0.11.7: resolution: {integrity: sha512-3fT48uRSRppOdQIlNCQKNNJRVaqzxkdCSTZM+NeHNxEpw6JejLLH78OHP54BxUHYEsa7pVsGn6uON552jwv9ZQ==} dev: true @@ -9471,130 +9596,129 @@ packages: resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} dev: true - /@typescript-eslint/eslint-plugin@6.13.2(@typescript-eslint/parser@6.13.2)(eslint@8.55.0)(typescript@5.5.4): - resolution: {integrity: sha512-3+9OGAWHhk4O1LlcwLBONbdXsAhLjyCFogJY/cWy2lxdVJ2JrcTF2pTGMaLl2AE7U1l31n8Py4a8bx5DLf/0dQ==} - engines: {node: ^16.0.0 || >=18.0.0} + /@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0)(eslint@9.16.0)(typescript@5.5.4): + resolution: {integrity: sha512-HU1KAdW3Tt8zQkdvNoIijfWDMvdSweFYm4hWh+KwhPstv+sCmWb89hCIP8msFm9N1R/ooh9honpSuvqKWlYy3w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha - eslint: ^7.0.0 || ^8.0.0 + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.13.2(eslint@8.55.0)(typescript@5.5.4) - '@typescript-eslint/scope-manager': 6.13.2 - '@typescript-eslint/type-utils': 6.13.2(eslint@8.55.0)(typescript@5.5.4) - '@typescript-eslint/utils': 6.13.2(eslint@8.55.0)(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 6.13.2 - debug: 4.3.4 - eslint: 8.55.0 + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.17.0(eslint@9.16.0)(typescript@5.5.4) + '@typescript-eslint/scope-manager': 8.17.0 + '@typescript-eslint/type-utils': 8.17.0(eslint@9.16.0)(typescript@5.5.4) + '@typescript-eslint/utils': 8.17.0(eslint@9.16.0)(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.17.0 + eslint: 9.16.0 graphemer: 1.4.0 - ignore: 5.3.0 + ignore: 5.3.2 natural-compare: 1.4.0 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.5.4) + ts-api-utils: 1.3.0(typescript@5.5.4) typescript: 5.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@6.13.2(eslint@8.55.0)(typescript@5.5.4): - resolution: {integrity: sha512-MUkcC+7Wt/QOGeVlM8aGGJZy1XV5YKjTpq9jK6r6/iLsGXhBVaGP5N0UYvFsu9BFlSpwY9kMretzdBH01rkRXg==} - engines: {node: ^16.0.0 || >=18.0.0} + /@typescript-eslint/parser@8.17.0(eslint@9.16.0)(typescript@5.5.4): + resolution: {integrity: sha512-Drp39TXuUlD49F7ilHHCG7TTg8IkA+hxCuULdmzWYICxGXvDXmDmWEjJYZQYgf6l/TFfYNE167m7isnc3xlIEg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^7.0.0 || ^8.0.0 + eslint: ^8.57.0 || ^9.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 6.13.2 - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/typescript-estree': 6.13.2(typescript@5.5.4) - '@typescript-eslint/visitor-keys': 6.13.2 - debug: 4.3.4 - eslint: 8.55.0 + '@typescript-eslint/scope-manager': 8.17.0 + '@typescript-eslint/types': 8.17.0 + '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.5.4) + '@typescript-eslint/visitor-keys': 8.17.0 + debug: 4.3.7 + eslint: 9.16.0 typescript: 5.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager@6.13.2: - resolution: {integrity: sha512-CXQA0xo7z6x13FeDYCgBkjWzNqzBn8RXaE3QVQVIUm74fWJLkJkaHmHdKStrxQllGh6Q4eUGyNpMe0b1hMkXFA==} - engines: {node: ^16.0.0 || >=18.0.0} + /@typescript-eslint/scope-manager@8.17.0: + resolution: {integrity: sha512-/ewp4XjvnxaREtqsZjF4Mfn078RD/9GmiEAtTeLQ7yFdKnqwTOgRMSvFz4et9U5RiJQ15WTGXPLj89zGusvxBg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} dependencies: - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/visitor-keys': 6.13.2 + '@typescript-eslint/types': 8.17.0 + '@typescript-eslint/visitor-keys': 8.17.0 dev: true - /@typescript-eslint/type-utils@6.13.2(eslint@8.55.0)(typescript@5.5.4): - resolution: {integrity: sha512-Qr6ssS1GFongzH2qfnWKkAQmMUyZSyOr0W54nZNU1MDfo+U4Mv3XveeLZzadc/yq8iYhQZHYT+eoXJqnACM1tw==} - engines: {node: ^16.0.0 || >=18.0.0} + /@typescript-eslint/type-utils@8.17.0(eslint@9.16.0)(typescript@5.5.4): + resolution: {integrity: sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^7.0.0 || ^8.0.0 + eslint: ^8.57.0 || ^9.0.0 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 6.13.2(typescript@5.5.4) - '@typescript-eslint/utils': 6.13.2(eslint@8.55.0)(typescript@5.5.4) - debug: 4.3.4 - eslint: 8.55.0 - ts-api-utils: 1.0.3(typescript@5.5.4) + '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.5.4) + '@typescript-eslint/utils': 8.17.0(eslint@9.16.0)(typescript@5.5.4) + debug: 4.3.7 + eslint: 9.16.0 + ts-api-utils: 1.3.0(typescript@5.5.4) typescript: 5.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types@6.13.2: - resolution: {integrity: sha512-7sxbQ+EMRubQc3wTfTsycgYpSujyVbI1xw+3UMRUcrhSy+pN09y/lWzeKDbvhoqcRbHdc+APLs/PWYi/cisLPg==} - engines: {node: ^16.0.0 || >=18.0.0} - dev: true - /@typescript-eslint/types@7.18.0: resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} engines: {node: ^18.18.0 || >=20.0.0} dev: true - /@typescript-eslint/typescript-estree@6.13.2(typescript@5.5.4): - resolution: {integrity: sha512-SuD8YLQv6WHnOEtKv8D6HZUzOub855cfPnPMKvdM/Bh1plv1f7Q/0iFUDLKKlxHcEstQnaUU4QZskgQq74t+3w==} - engines: {node: ^16.0.0 || >=18.0.0} + /@typescript-eslint/types@8.17.0: + resolution: {integrity: sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true + + /@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4): + resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/visitor-keys': 6.13.2 - debug: 4.3.4 + '@typescript-eslint/types': 7.18.0 + '@typescript-eslint/visitor-keys': 7.18.0 + debug: 4.3.7 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.5.4) + minimatch: 9.0.5 + semver: 7.6.3 + ts-api-utils: 1.3.0(typescript@5.5.4) typescript: 5.5.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4): - resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==} - engines: {node: ^18.18.0 || >=20.0.0} + /@typescript-eslint/typescript-estree@8.17.0(typescript@5.5.4): + resolution: {integrity: sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/visitor-keys': 7.18.0 - debug: 4.3.6 - globby: 11.1.0 + '@typescript-eslint/types': 8.17.0 + '@typescript-eslint/visitor-keys': 8.17.0 + debug: 4.3.7 + fast-glob: 3.3.2 is-glob: 4.0.3 - minimatch: 9.0.4 + minimatch: 9.0.5 semver: 7.6.3 ts-api-utils: 1.3.0(typescript@5.5.4) typescript: 5.5.4 @@ -9602,31 +9726,24 @@ packages: - supports-color dev: true - /@typescript-eslint/utils@6.13.2(eslint@8.55.0)(typescript@5.5.4): - resolution: {integrity: sha512-b9Ptq4eAZUym4idijCRzl61oPCwwREcfDI8xGk751Vhzig5fFZR9CyzDz4Sp/nxSLBYxUPyh4QdIDqWykFhNmQ==} - engines: {node: ^16.0.0 || >=18.0.0} + /@typescript-eslint/utils@8.17.0(eslint@9.16.0)(typescript@5.5.4): + resolution: {integrity: sha512-bQC8BnEkxqG8HBGKwG9wXlZqg37RKSMY7v/X8VEWD8JG2JuTHuNK0VFvMPMUKQcbk6B+tf05k+4AShAEtCtJ/w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^7.0.0 || ^8.0.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.6 - '@typescript-eslint/scope-manager': 6.13.2 - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/typescript-estree': 6.13.2(typescript@5.5.4) - eslint: 8.55.0 - semver: 7.5.4 + '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0) + '@typescript-eslint/scope-manager': 8.17.0 + '@typescript-eslint/types': 8.17.0 + '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.5.4) + eslint: 9.16.0 + typescript: 5.5.4 transitivePeerDependencies: - supports-color - - typescript - dev: true - - /@typescript-eslint/visitor-keys@6.13.2: - resolution: {integrity: sha512-OGznFs0eAQXJsp+xSd6k/O1UbFi/K/L7WjqeRoFE7vadjAF9y0uppXhYNQNEqygjou782maGClOoZwPqF0Drlw==} - engines: {node: ^16.0.0 || >=18.0.0} - dependencies: - '@typescript-eslint/types': 6.13.2 - eslint-visitor-keys: 3.4.3 dev: true /@typescript-eslint/visitor-keys@7.18.0: @@ -9637,8 +9754,12 @@ packages: eslint-visitor-keys: 3.4.3 dev: true - /@ungap/structured-clone@1.2.0: - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + /@typescript-eslint/visitor-keys@8.17.0: + resolution: {integrity: sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dependencies: + '@typescript-eslint/types': 8.17.0 + eslint-visitor-keys: 4.2.0 dev: true /@vue/compiler-core@3.4.35: @@ -9652,6 +9773,18 @@ packages: source-map-js: 1.2.0 dev: true + /@vue/compiler-core@3.5.13: + resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==} + requiresBuild: true + dependencies: + '@babel/parser': 7.25.3 + '@vue/shared': 3.5.13 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.0 + dev: true + optional: true + /@vue/compiler-dom@3.4.35: resolution: {integrity: sha512-pWIZRL76/oE/VMhdv/ovZfmuooEni6JPG1BFe7oLk5DZRo/ImydXijoZl/4kh2406boRQ7lxTYzbZEEXEhj9NQ==} requiresBuild: true @@ -9660,6 +9793,15 @@ packages: '@vue/shared': 3.4.35 dev: true + /@vue/compiler-dom@3.5.13: + resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==} + requiresBuild: true + dependencies: + '@vue/compiler-core': 3.5.13 + '@vue/shared': 3.5.13 + dev: true + optional: true + /@vue/compiler-sfc@3.4.35: resolution: {integrity: sha512-xacnRS/h/FCsjsMfxBkzjoNxyxEyKyZfBch/P4vkLRvYJwe5ChXmZZrj8Dsed/752H2Q3JE8kYu9Uyha9J6PgA==} dependencies: @@ -9669,11 +9811,27 @@ packages: '@vue/compiler-ssr': 3.4.35 '@vue/shared': 3.4.35 estree-walker: 2.0.2 - magic-string: 0.30.11 + magic-string: 0.30.14 postcss: 8.4.40 source-map-js: 1.2.0 dev: true + /@vue/compiler-sfc@3.5.13: + resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==} + requiresBuild: true + dependencies: + '@babel/parser': 7.25.3 + '@vue/compiler-core': 3.5.13 + '@vue/compiler-dom': 3.5.13 + '@vue/compiler-ssr': 3.5.13 + '@vue/shared': 3.5.13 + estree-walker: 2.0.2 + magic-string: 0.30.14 + postcss: 8.4.49 + source-map-js: 1.2.0 + dev: true + optional: true + /@vue/compiler-ssr@3.4.35: resolution: {integrity: sha512-7iynB+0KB1AAJKk/biENTV5cRGHRdbdaD7Mx3nWcm1W8bVD6QmnH3B4AHhQQ1qZHhqFwzEzMwiytXm3PX1e60A==} requiresBuild: true @@ -9682,11 +9840,26 @@ packages: '@vue/shared': 3.4.35 dev: true + /@vue/compiler-ssr@3.5.13: + resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==} + requiresBuild: true + dependencies: + '@vue/compiler-dom': 3.5.13 + '@vue/shared': 3.5.13 + dev: true + optional: true + /@vue/shared@3.4.35: resolution: {integrity: sha512-hvuhBYYDe+b1G8KHxsQ0diDqDMA8D9laxWZhNAjE83VZb5UDaXl9Xnz7cGdDSyiHM90qqI/CyGMcpBpiDy6VVQ==} requiresBuild: true dev: true + /@vue/shared@3.5.13: + resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==} + requiresBuild: true + dev: true + optional: true + /@yarnpkg/lockfile@1.1.0: resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} dev: true @@ -9696,7 +9869,7 @@ packages: engines: {node: '>=14.15.0'} dependencies: js-yaml: 3.14.1 - tslib: 2.6.2 + tslib: 2.8.1 dev: true /@zkochan/js-yaml@0.0.7: @@ -9719,12 +9892,12 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: true - /acorn-jsx@5.3.2(acorn@8.11.2): + /acorn-jsx@5.3.2(acorn@8.14.0): resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.11.2 + acorn: 8.14.0 dev: true /acorn@7.4.1: @@ -9739,6 +9912,12 @@ packages: hasBin: true dev: true + /acorn@8.14.0: + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + /acorn@8.8.2: resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} engines: {node: '>=0.4.0'} @@ -9753,7 +9932,7 @@ packages: resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} engines: {node: '>= 14'} dependencies: - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true @@ -9848,10 +10027,6 @@ packages: resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} dev: true - /arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} - dev: true - /argparse@1.0.10: resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} dependencies: @@ -9869,6 +10044,14 @@ packages: is-array-buffer: 3.0.2 dev: true + /array-buffer-byte-length@1.0.1: + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + is-array-buffer: 3.0.4 + dev: true + /array-differ@3.0.0: resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} engines: {node: '>=8'} @@ -9883,14 +10066,15 @@ packages: engines: {node: '>=8'} dev: true - /array.prototype.every@1.1.5: - resolution: {integrity: sha512-FfMQJ+/joFGXpRCltbzV3znaP5QxIhLFySo0fEPn3GuoYlud9LhknMCIxdYKC2qsM/6VHoSp6YGwe3EZXrEcwQ==} + /array.prototype.every@1.1.6: + resolution: {integrity: sha512-gNEqZD97w6bfQRNmHkFv7rNnGM+VWyHZT+h/rf9C+22owcXuENr66Lfo0phItpU5KoXW6Owb34q2+8MnSIZ57w==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 - is-string: 1.0.7 + es-abstract: 1.23.5 + es-object-atoms: 1.0.0 + is-string: 1.1.0 dev: true /arraybuffer.prototype.slice@1.0.2: @@ -9906,6 +10090,20 @@ packages: is-shared-array-buffer: 1.0.2 dev: true + /arraybuffer.prototype.slice@1.0.3: + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.1 + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.5 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + is-array-buffer: 3.0.4 + is-shared-array-buffer: 1.0.3 + dev: true + /arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} @@ -9934,6 +10132,13 @@ packages: engines: {node: '>= 0.4'} dev: true + /available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + dependencies: + possible-typed-array-names: 1.0.0 + dev: true + /axios@1.6.2: resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==} dependencies: @@ -9944,38 +10149,38 @@ packages: - debug dev: true - /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.5): - resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} + /babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0): + resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5) + '@babel/compat-data': 7.26.2 + '@babel/core': 7.26.0 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.5): - resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==} + /babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0): + resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5) - core-js-compat: 3.34.0 + '@babel/core': 7.26.0 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) + core-js-compat: 3.39.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.5): - resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} + /babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0): + resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5) + '@babel/core': 7.26.0 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0) transitivePeerDependencies: - supports-color dev: true @@ -10003,11 +10208,6 @@ packages: platform: 1.3.6 dev: true - /big-integer@1.6.52: - resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} - engines: {node: '>=0.6'} - dev: true - /bin-links@4.0.4: resolution: {integrity: sha512-cMtq4W5ZsEwcutJrVId+a/tjt8GSbS+h0oNkdl6+6rBuEv8Ot33Bevj5KPm40t309zuhVic8NjpuL42QCiJWWA==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -10043,13 +10243,6 @@ packages: python-shell: 0.4.0 dev: true - /bplist-parser@0.2.0: - resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} - engines: {node: '>= 5.10.0'} - dependencies: - big-integer: 1.6.52 - dev: true - /brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: @@ -10070,15 +10263,15 @@ packages: fill-range: 7.1.1 dev: true - /browserslist@4.22.2: - resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} + /browserslist@4.24.2: + resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001566 - electron-to-chromium: 1.4.609 - node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.22.2) + caniuse-lite: 1.0.30001686 + electron-to-chromium: 1.5.68 + node-releases: 2.0.18 + update-browserslist-db: 1.1.1(browserslist@4.24.2) dev: true /buffer-from@1.1.2: @@ -10092,25 +10285,13 @@ packages: ieee754: 1.2.1 dev: true - /builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} - dev: true - - /bundle-name@3.0.0: - resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} - engines: {node: '>=12'} - dependencies: - run-applescript: 5.0.0 - dev: true - - /bundle-require@4.0.2(esbuild@0.19.11): - resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} + /bundle-require@5.0.0(esbuild@0.24.0): + resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: - esbuild: '>=0.17' + esbuild: '>=0.18' dependencies: - esbuild: 0.19.11 + esbuild: 0.24.0 load-tsconfig: 0.2.5 dev: true @@ -10142,6 +10323,24 @@ packages: unique-filename: 3.0.0 dev: true + /cacache@18.0.4: + resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==} + engines: {node: ^16.14.0 || >=18.0.0} + dependencies: + '@npmcli/fs': 3.1.1 + fs-minipass: 3.0.3 + glob: 10.3.10 + lru-cache: 10.4.3 + minipass: 7.1.2 + minipass-collect: 2.0.1 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + p-map: 4.0.0 + ssri: 10.0.6 + tar: 6.2.1 + unique-filename: 3.0.0 + dev: true + /call-bind@1.0.5: resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} dependencies: @@ -10150,6 +10349,17 @@ packages: set-function-length: 1.1.1 dev: true + /call-bind@1.0.7: + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + set-function-length: 1.2.2 + dev: true + /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} @@ -10174,8 +10384,8 @@ packages: engines: {node: '>=16'} dev: true - /caniuse-lite@1.0.30001566: - resolution: {integrity: sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==} + /caniuse-lite@1.0.30001686: + resolution: {integrity: sha512-Y7deg0Aergpa24M3qLC5xjNklnKnhsmSyR/V89dLZ1n0ucJIFNs7PgR2Yfa/Zf6W79SbBicgtGxZr2juHkEUIA==} dev: true /ccount@2.0.1: @@ -10243,6 +10453,13 @@ packages: fsevents: 2.3.3 dev: true + /chokidar@4.0.1: + resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} + engines: {node: '>= 14.16.0'} + dependencies: + readdirp: 4.0.2 + dev: true + /chownr@2.0.0: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} engines: {node: '>=10'} @@ -10465,6 +10682,11 @@ packages: robust-predicates: 2.0.4 tinyqueue: 2.0.3 + /consola@3.2.3: + resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} + engines: {node: ^14.18.0 || >=16.10.0} + dev: true + /console-control-strings@1.1.0: resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} dev: true @@ -10549,18 +10771,18 @@ packages: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} dev: true - /core-js-compat@3.34.0: - resolution: {integrity: sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==} + /core-js-compat@3.39.0: + resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==} dependencies: - browserslist: 4.22.2 + browserslist: 4.24.2 dev: true /core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} dev: true - /cosmiconfig@8.3.6(typescript@5.5.4): - resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} + /cosmiconfig@9.0.0(typescript@5.5.4): + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} engines: {node: '>=14'} peerDependencies: typescript: '>=4.9.5' @@ -10568,17 +10790,13 @@ packages: typescript: optional: true dependencies: + env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 - path-type: 4.0.0 typescript: 5.5.4 dev: true - /create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} - dev: true - /cross-spawn@6.0.5: resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} engines: {node: '>=4.8'} @@ -10599,6 +10817,15 @@ packages: which: 2.0.2 dev: true + /cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + /cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} engines: {node: '>=4'} @@ -10628,6 +10855,33 @@ packages: engines: {node: '>=8'} dev: true + /data-view-buffer@1.0.1: + resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + dev: true + + /data-view-byte-length@1.0.1: + resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + dev: true + + /data-view-byte-offset@1.0.0: + resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-data-view: 1.0.1 + dev: true + /dateformat@3.0.3: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} dev: true @@ -10638,8 +10892,8 @@ packages: dev: true optional: true - /debug@4.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + /debug@4.3.6: + resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -10650,8 +10904,8 @@ packages: ms: 2.1.2 dev: true - /debug@4.3.6: - resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} + /debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -10659,7 +10913,7 @@ packages: supports-color: optional: true dependencies: - ms: 2.1.2 + ms: 2.1.3 dev: true /decamelize-keys@1.1.1: @@ -10700,7 +10954,7 @@ packages: engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 + call-bind: 1.0.7 es-get-iterator: 1.1.3 get-intrinsic: 1.2.2 is-arguments: 1.1.1 @@ -10709,7 +10963,7 @@ packages: is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 isarray: 2.0.5 - object-is: 1.1.5 + object-is: 1.1.6 object-keys: 1.1.1 object.assign: 4.1.5 regexp.prototype.flags: 1.5.1 @@ -10728,24 +10982,6 @@ packages: engines: {node: '>=0.10.0'} dev: true - /default-browser-id@3.0.0: - resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} - engines: {node: '>=12'} - dependencies: - bplist-parser: 0.2.0 - untildify: 4.0.0 - dev: true - - /default-browser@4.0.0: - resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} - engines: {node: '>=14.16'} - dependencies: - bundle-name: 3.0.0 - default-browser-id: 3.0.0 - execa: 7.2.0 - titleize: 3.0.0 - dev: true - /defaults@1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: @@ -10756,21 +10992,25 @@ packages: resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 gopd: 1.0.1 has-property-descriptors: 1.0.1 dev: true + /define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + dependencies: + es-define-property: 1.0.0 + es-errors: 1.3.0 + gopd: 1.1.0 + dev: true + /define-lazy-prop@2.0.0: resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} engines: {node: '>=8'} dev: true - /define-lazy-prop@3.0.0: - resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} - engines: {node: '>=12'} - dev: true - /define-properties@1.2.1: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} @@ -10915,11 +11155,6 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true - /diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} - dev: true - /diff@5.2.0: resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} engines: {node: '>=0.3.1'} @@ -10939,19 +11174,12 @@ packages: esutils: 2.0.3 dev: true - /doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} - dependencies: - esutils: 2.0.3 - dev: true - /documentation@14.0.3: resolution: {integrity: sha512-B7cAviVKN9Rw7Ofd+9grhVuxiHwly6Ieh+d/ceMw8UdBOv/irkuwnDEJP8tq0wgdLJDUVuIkovV+AX9mTrZFxg==} engines: {node: '>=14'} hasBin: true dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.26.0 '@babel/generator': 7.23.5 '@babel/parser': 7.23.5 '@babel/traverse': 7.23.5 @@ -10989,7 +11217,7 @@ packages: vfile-sort: 3.0.1 yargs: 17.7.2 optionalDependencies: - '@vue/compiler-sfc': 3.4.35 + '@vue/compiler-sfc': 3.5.13 vue-template-compiler: 2.7.16 transitivePeerDependencies: - supports-color @@ -11039,8 +11267,8 @@ packages: jake: 10.8.7 dev: true - /electron-to-chromium@1.4.609: - resolution: {integrity: sha512-ihiCP7PJmjoGNuLpl7TjNA8pCQWu09vGyjlPYw1Rqww4gvNuCcmvl+44G+2QyJ6S2K4o+wbTS++Xz0YN8Q9ERw==} + /electron-to-chromium@1.5.68: + resolution: {integrity: sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ==} dev: true /emoji-regex@10.3.0: @@ -11138,7 +11366,7 @@ packages: has-property-descriptors: 1.0.1 has-proto: 1.0.1 has-symbols: 1.0.3 - hasown: 2.0.0 + hasown: 2.0.2 internal-slot: 1.0.6 is-array-buffer: 3.0.2 is-callable: 1.2.7 @@ -11148,13 +11376,13 @@ packages: is-string: 1.0.7 is-typed-array: 1.1.12 is-weakref: 1.0.2 - object-inspect: 1.13.1 + object-inspect: 1.13.3 object-keys: 1.1.1 object.assign: 4.1.5 regexp.prototype.flags: 1.5.1 safe-array-concat: 1.0.1 safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.8 + string.prototype.trim: 1.2.9 string.prototype.trimend: 1.0.7 string.prototype.trimstart: 1.0.7 typed-array-buffer: 1.0.0 @@ -11162,7 +11390,59 @@ packages: typed-array-byte-offset: 1.0.0 typed-array-length: 1.0.4 unbox-primitive: 1.0.2 - which-typed-array: 1.1.13 + which-typed-array: 1.1.13 + dev: true + + /es-abstract@1.23.5: + resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.1 + arraybuffer.prototype.slice: 1.0.3 + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 + data-view-buffer: 1.0.1 + data-view-byte-length: 1.0.1 + data-view-byte-offset: 1.0.0 + es-define-property: 1.0.0 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-set-tostringtag: 2.0.3 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.4 + get-symbol-description: 1.0.2 + globalthis: 1.0.4 + gopd: 1.1.0 + has-property-descriptors: 1.0.2 + has-proto: 1.1.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.0.7 + is-array-buffer: 3.0.4 + is-callable: 1.2.7 + is-data-view: 1.0.1 + is-negative-zero: 2.0.3 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.3 + is-string: 1.1.0 + is-typed-array: 1.1.13 + is-weakref: 1.0.2 + object-inspect: 1.13.3 + object-keys: 1.1.1 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.3 + safe-array-concat: 1.1.2 + safe-regex-test: 1.0.3 + string.prototype.trim: 1.2.9 + string.prototype.trimend: 1.0.8 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.2 + typed-array-byte-length: 1.0.1 + typed-array-byte-offset: 1.0.3 + typed-array-length: 1.0.7 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.16 dev: true /es-check@7.1.1: @@ -11177,27 +11457,55 @@ packages: winston: 3.11.0 dev: true + /es-define-property@1.0.0: + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.4 + dev: true + + /es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + dev: true + /es-get-iterator@1.1.3: resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 get-intrinsic: 1.2.2 has-symbols: 1.0.3 is-arguments: 1.1.1 is-map: 2.0.2 is-set: 2.0.2 - is-string: 1.0.7 + is-string: 1.1.0 isarray: 2.0.5 stop-iteration-iterator: 1.0.0 dev: true + /es-object-atoms@1.0.0: + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} + engines: {node: '>= 0.4'} + dependencies: + es-errors: 1.3.0 + dev: true + /es-set-tostringtag@2.0.2: resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.2 has-tostringtag: 1.0.0 - hasown: 2.0.0 + hasown: 2.0.2 + dev: true + + /es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.4 + has-tostringtag: 1.0.2 + hasown: 2.0.2 dev: true /es-to-primitive@1.2.1: @@ -11209,65 +11517,77 @@ packages: is-symbol: 1.0.4 dev: true - /esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} - engines: {node: '>=12'} + /es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.1.0 + dev: true + + /esbuild@0.23.1: + resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==} + engines: {node: '>=18'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.18.20 - '@esbuild/android-arm64': 0.18.20 - '@esbuild/android-x64': 0.18.20 - '@esbuild/darwin-arm64': 0.18.20 - '@esbuild/darwin-x64': 0.18.20 - '@esbuild/freebsd-arm64': 0.18.20 - '@esbuild/freebsd-x64': 0.18.20 - '@esbuild/linux-arm': 0.18.20 - '@esbuild/linux-arm64': 0.18.20 - '@esbuild/linux-ia32': 0.18.20 - '@esbuild/linux-loong64': 0.18.20 - '@esbuild/linux-mips64el': 0.18.20 - '@esbuild/linux-ppc64': 0.18.20 - '@esbuild/linux-riscv64': 0.18.20 - '@esbuild/linux-s390x': 0.18.20 - '@esbuild/linux-x64': 0.18.20 - '@esbuild/netbsd-x64': 0.18.20 - '@esbuild/openbsd-x64': 0.18.20 - '@esbuild/sunos-x64': 0.18.20 - '@esbuild/win32-arm64': 0.18.20 - '@esbuild/win32-ia32': 0.18.20 - '@esbuild/win32-x64': 0.18.20 - dev: true - - /esbuild@0.19.11: - resolution: {integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==} - engines: {node: '>=12'} + '@esbuild/aix-ppc64': 0.23.1 + '@esbuild/android-arm': 0.23.1 + '@esbuild/android-arm64': 0.23.1 + '@esbuild/android-x64': 0.23.1 + '@esbuild/darwin-arm64': 0.23.1 + '@esbuild/darwin-x64': 0.23.1 + '@esbuild/freebsd-arm64': 0.23.1 + '@esbuild/freebsd-x64': 0.23.1 + '@esbuild/linux-arm': 0.23.1 + '@esbuild/linux-arm64': 0.23.1 + '@esbuild/linux-ia32': 0.23.1 + '@esbuild/linux-loong64': 0.23.1 + '@esbuild/linux-mips64el': 0.23.1 + '@esbuild/linux-ppc64': 0.23.1 + '@esbuild/linux-riscv64': 0.23.1 + '@esbuild/linux-s390x': 0.23.1 + '@esbuild/linux-x64': 0.23.1 + '@esbuild/netbsd-x64': 0.23.1 + '@esbuild/openbsd-arm64': 0.23.1 + '@esbuild/openbsd-x64': 0.23.1 + '@esbuild/sunos-x64': 0.23.1 + '@esbuild/win32-arm64': 0.23.1 + '@esbuild/win32-ia32': 0.23.1 + '@esbuild/win32-x64': 0.23.1 + dev: true + + /esbuild@0.24.0: + resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==} + engines: {node: '>=18'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/aix-ppc64': 0.19.11 - '@esbuild/android-arm': 0.19.11 - '@esbuild/android-arm64': 0.19.11 - '@esbuild/android-x64': 0.19.11 - '@esbuild/darwin-arm64': 0.19.11 - '@esbuild/darwin-x64': 0.19.11 - '@esbuild/freebsd-arm64': 0.19.11 - '@esbuild/freebsd-x64': 0.19.11 - '@esbuild/linux-arm': 0.19.11 - '@esbuild/linux-arm64': 0.19.11 - '@esbuild/linux-ia32': 0.19.11 - '@esbuild/linux-loong64': 0.19.11 - '@esbuild/linux-mips64el': 0.19.11 - '@esbuild/linux-ppc64': 0.19.11 - '@esbuild/linux-riscv64': 0.19.11 - '@esbuild/linux-s390x': 0.19.11 - '@esbuild/linux-x64': 0.19.11 - '@esbuild/netbsd-x64': 0.19.11 - '@esbuild/openbsd-x64': 0.19.11 - '@esbuild/sunos-x64': 0.19.11 - '@esbuild/win32-arm64': 0.19.11 - '@esbuild/win32-ia32': 0.19.11 - '@esbuild/win32-x64': 0.19.11 + '@esbuild/aix-ppc64': 0.24.0 + '@esbuild/android-arm': 0.24.0 + '@esbuild/android-arm64': 0.24.0 + '@esbuild/android-x64': 0.24.0 + '@esbuild/darwin-arm64': 0.24.0 + '@esbuild/darwin-x64': 0.24.0 + '@esbuild/freebsd-arm64': 0.24.0 + '@esbuild/freebsd-x64': 0.24.0 + '@esbuild/linux-arm': 0.24.0 + '@esbuild/linux-arm64': 0.24.0 + '@esbuild/linux-ia32': 0.24.0 + '@esbuild/linux-loong64': 0.24.0 + '@esbuild/linux-mips64el': 0.24.0 + '@esbuild/linux-ppc64': 0.24.0 + '@esbuild/linux-riscv64': 0.24.0 + '@esbuild/linux-s390x': 0.24.0 + '@esbuild/linux-x64': 0.24.0 + '@esbuild/netbsd-x64': 0.24.0 + '@esbuild/openbsd-arm64': 0.24.0 + '@esbuild/openbsd-x64': 0.24.0 + '@esbuild/sunos-x64': 0.24.0 + '@esbuild/win32-arm64': 0.24.0 + '@esbuild/win32-ia32': 0.24.0 + '@esbuild/win32-x64': 0.24.0 dev: true /escalade@3.1.1: @@ -11275,6 +11595,11 @@ packages: engines: {node: '>=6'} dev: true + /escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + dev: true + /escape-string-regexp@1.0.5: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} @@ -11302,17 +11627,17 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-prettier@9.1.0(eslint@8.55.0): + /eslint-config-prettier@9.1.0(eslint@9.16.0): resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.55.0 + eslint: 9.16.0 dev: true - /eslint-plugin-prettier@5.0.1(eslint-config-prettier@9.1.0)(eslint@8.55.0)(prettier@3.3.3): - resolution: {integrity: sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==} + /eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0)(eslint@9.16.0)(prettier@3.3.3): + resolution: {integrity: sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: '@types/eslint': '>=8.0.0' @@ -11325,16 +11650,16 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint: 8.55.0 - eslint-config-prettier: 9.1.0(eslint@8.55.0) + eslint: 9.16.0 + eslint-config-prettier: 9.1.0(eslint@9.16.0) prettier: 3.3.3 prettier-linter-helpers: 1.0.0 - synckit: 0.8.6 + synckit: 0.9.2 dev: true - /eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /eslint-scope@8.2.0: + resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 @@ -11345,49 +11670,55 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint@8.55.0: - resolution: {integrity: sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /eslint-visitor-keys@4.2.0: + resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + dev: true + + /eslint@9.16.0: + resolution: {integrity: sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) - '@eslint-community/regexpp': 4.10.0 - '@eslint/eslintrc': 2.1.4 - '@eslint/js': 8.55.0 - '@humanwhocodes/config-array': 0.11.13 + '@eslint-community/eslint-utils': 4.4.1(eslint@9.16.0) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.19.0 + '@eslint/core': 0.9.0 + '@eslint/eslintrc': 3.2.0 + '@eslint/js': 9.16.0 + '@eslint/plugin-kit': 0.2.3 + '@humanfs/node': 0.16.6 '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - '@ungap/structured-clone': 1.2.0 + '@humanwhocodes/retry': 0.4.1 + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 ajv: 6.12.6 chalk: 4.1.2 - cross-spawn: 7.0.3 - debug: 4.3.4 - doctrine: 3.0.0 + cross-spawn: 7.0.6 + debug: 4.3.7 escape-string-regexp: 4.0.0 - eslint-scope: 7.2.2 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 - esquery: 1.5.0 + eslint-scope: 8.2.0 + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 + esquery: 1.6.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 - file-entry-cache: 6.0.1 + file-entry-cache: 8.0.0 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.23.0 - graphemer: 1.4.0 - ignore: 5.3.0 + ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 - is-path-inside: 3.0.3 - js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 - levn: 0.4.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 - strip-ansi: 6.0.1 - text-table: 0.2.0 + optionator: 0.9.4 transitivePeerDependencies: - supports-color dev: true @@ -11397,13 +11728,13 @@ packages: engines: {node: '>=6'} dev: true - /espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + /espree@10.3.0: + resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} dependencies: - acorn: 8.11.2 - acorn-jsx: 5.3.2(acorn@8.11.2) - eslint-visitor-keys: 3.4.3 + acorn: 8.14.0 + acorn-jsx: 5.3.2(acorn@8.14.0) + eslint-visitor-keys: 4.2.0 dev: true /esprima@4.0.1: @@ -11412,8 +11743,8 @@ packages: hasBin: true dev: true - /esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + /esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} engines: {node: '>=0.10'} dependencies: estraverse: 5.3.0 @@ -11463,36 +11794,6 @@ packages: strip-final-newline: 2.0.0 dev: true - /execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 - dev: true - - /execa@7.2.0: - resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} - engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 4.3.1 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.1.0 - onetime: 6.0.0 - signal-exit: 3.0.7 - strip-final-newline: 3.0.0 - dev: true - /execa@8.0.1: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} engines: {node: '>=16.17'} @@ -11557,6 +11858,17 @@ packages: reusify: 1.0.4 dev: true + /fdir@6.4.2(picomatch@4.0.2): + resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + dependencies: + picomatch: 4.0.2 + dev: true + /fecha@4.2.3: resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} dev: true @@ -11568,11 +11880,11 @@ packages: escape-string-regexp: 1.0.5 dev: true - /file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + /file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} dependencies: - flat-cache: 3.2.0 + flat-cache: 4.0.1 dev: true /filelist@1.0.4: @@ -11657,13 +11969,12 @@ packages: unicorn-magic: 0.1.0 dev: true - /flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} + /flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} dependencies: - flatted: 3.2.9 + flatted: 3.3.2 keyv: 4.5.4 - rimraf: 3.0.2 dev: true /flat@5.0.2: @@ -11671,8 +11982,8 @@ packages: hasBin: true dev: true - /flatted@3.2.9: - resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + /flatted@3.3.2: + resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} dev: true /fn.name@1.1.0: @@ -11703,6 +12014,14 @@ packages: signal-exit: 4.1.0 dev: true + /foreground-child@3.3.0: + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} + engines: {node: '>=14'} + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + dev: true + /form-data@4.0.0: resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} engines: {node: '>= 6'} @@ -11759,9 +12078,9 @@ packages: resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.5 functions-have-names: 1.2.3 dev: true @@ -11810,7 +12129,18 @@ packages: function-bind: 1.1.2 has-proto: 1.0.1 has-symbols: 1.0.3 - hasown: 2.0.0 + hasown: 2.0.2 + dev: true + + /get-intrinsic@1.2.4: + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + engines: {node: '>= 0.4'} + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + has-proto: 1.1.0 + has-symbols: 1.1.0 + hasown: 2.0.2 dev: true /get-own-enumerable-property-symbols@3.0.2: @@ -11861,8 +12191,17 @@ packages: get-intrinsic: 1.2.2 dev: true - /get-tsconfig@4.7.2: - resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} + /get-symbol-description@1.0.2: + resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + dev: true + + /get-tsconfig@4.8.1: + resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} dependencies: resolve-pkg-maps: 1.0.0 dev: true @@ -11953,15 +12292,16 @@ packages: path-scurry: 1.10.1 dev: true - /glob@7.1.6: - resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} + /glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 + foreground-child: 3.3.0 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 dev: true /glob@7.2.3: @@ -12006,11 +12346,14 @@ packages: engines: {node: '>=4'} dev: true - /globals@13.23.0: - resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} - engines: {node: '>=8'} - dependencies: - type-fest: 0.20.2 + /globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + dev: true + + /globals@15.13.0: + resolution: {integrity: sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==} + engines: {node: '>=18'} dev: true /globalthis@1.0.3: @@ -12020,6 +12363,14 @@ packages: define-properties: 1.2.1 dev: true + /globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + dependencies: + define-properties: 1.2.1 + gopd: 1.1.0 + dev: true + /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} engines: {node: '>=10'} @@ -12032,13 +12383,13 @@ packages: slash: 3.0.0 dev: true - /globby@14.0.0: - resolution: {integrity: sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==} + /globby@14.0.2: + resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} engines: {node: '>=18'} dependencies: - '@sindresorhus/merge-streams': 1.0.0 + '@sindresorhus/merge-streams': 2.3.0 fast-glob: 3.3.2 - ignore: 5.3.0 + ignore: 5.3.2 path-type: 5.0.0 slash: 5.1.0 unicorn-magic: 0.1.0 @@ -12058,6 +12409,13 @@ packages: get-intrinsic: 1.2.2 dev: true + /gopd@1.1.0: + resolution: {integrity: sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.4 + dev: true + /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} dev: true @@ -12076,7 +12434,7 @@ packages: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.19.1 + uglify-js: 3.19.3 dev: true /hard-rejection@2.1.0: @@ -12088,11 +12446,12 @@ packages: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} dev: true - /has-dynamic-import@2.0.1: - resolution: {integrity: sha512-X3fbtsZmwb6W7fJGR9o7x65fZoodygCrZ3TVycvghP62yYQfS0t4RS0Qcz+j5tQYUKeSWS09tHkWW6WhFV3XhQ==} + /has-dynamic-import@2.1.0: + resolution: {integrity: sha512-su0anMkNEnJKZ/rB99jn3y6lV/J8Ro96hBJ28YAeVzj5rWxH+YL/AdCyiYYA1HDLV9YhmvqpWSJJj2KLo1MX6g==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 dev: true /has-flag@3.0.0: @@ -12108,7 +12467,13 @@ packages: /has-property-descriptors@1.0.1: resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} dependencies: - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 + dev: true + + /has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + dependencies: + es-define-property: 1.0.0 dev: true /has-proto@1.0.1: @@ -12116,11 +12481,23 @@ packages: engines: {node: '>= 0.4'} dev: true + /has-proto@1.1.0: + resolution: {integrity: sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + dev: true + /has-symbols@1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} engines: {node: '>= 0.4'} dev: true + /has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + dev: true + /has-tostringtag@1.0.0: resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} engines: {node: '>= 0.4'} @@ -12128,12 +12505,19 @@ packages: has-symbols: 1.0.3 dev: true + /has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + /has-unicode@2.0.1: resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} dev: true - /hasown@2.0.0: - resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + /hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} engines: {node: '>= 0.4'} dependencies: function-bind: 1.1.2 @@ -12263,7 +12647,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true @@ -12273,7 +12657,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.4 + debug: 4.3.7 transitivePeerDependencies: - supports-color dev: true @@ -12283,11 +12667,6 @@ packages: engines: {node: '>=10.17.0'} dev: true - /human-signals@4.3.1: - resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} - engines: {node: '>=14.18.0'} - dev: true - /human-signals@5.0.0: resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} engines: {node: '>=16.17.0'} @@ -12331,6 +12710,11 @@ packages: engines: {node: '>= 4'} dev: true + /ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + dev: true + /import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} @@ -12419,10 +12803,19 @@ packages: engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.2 - hasown: 2.0.0 + hasown: 2.0.2 side-channel: 1.0.4 dev: true + /internal-slot@1.0.7: + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + engines: {node: '>= 0.4'} + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.0.6 + dev: true + /ip@2.0.1: resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} dev: true @@ -12439,18 +12832,26 @@ packages: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-tostringtag: 1.0.0 dev: true /is-array-buffer@3.0.2: resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 get-intrinsic: 1.2.2 is-typed-array: 1.1.12 dev: true + /is-array-buffer@3.0.4: + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + dev: true + /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} dev: true @@ -12459,12 +12860,26 @@ packages: resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} dev: true + /is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.2 + dev: true + /is-bigint@1.0.4: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: has-bigints: 1.0.2 dev: true + /is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + dependencies: + has-bigints: 1.0.2 + dev: true + /is-binary-path@2.1.0: resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} engines: {node: '>=8'} @@ -12476,22 +12891,23 @@ packages: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-tostringtag: 1.0.0 dev: true + /is-boolean-object@1.2.0: + resolution: {integrity: sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + has-tostringtag: 1.0.2 + dev: true + /is-buffer@2.0.5: resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} engines: {node: '>=4'} dev: true - /is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} - dependencies: - builtin-modules: 3.3.0 - dev: true - /is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} @@ -12507,7 +12923,14 @@ packages: /is-core-module@2.13.1: resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} dependencies: - hasown: 2.0.0 + hasown: 2.0.2 + dev: true + + /is-data-view@1.0.1: + resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} + engines: {node: '>= 0.4'} + dependencies: + is-typed-array: 1.1.13 dev: true /is-date-object@1.0.5: @@ -12523,17 +12946,18 @@ packages: hasBin: true dev: true - /is-docker@3.0.0: - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - hasBin: true - dev: true - /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} dev: true + /is-finalizationregistry@1.1.0: + resolution: {integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + dev: true + /is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} @@ -12551,6 +12975,13 @@ packages: get-east-asian-width: 1.2.0 dev: true + /is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.2 + dev: true + /is-glob@4.0.3: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} @@ -12558,14 +12989,6 @@ packages: is-extglob: 2.1.1 dev: true - /is-inside-container@1.0.0: - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} - engines: {node: '>=14.16'} - hasBin: true - dependencies: - is-docker: 3.0.0 - dev: true - /is-interactive@1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} @@ -12579,6 +13002,11 @@ packages: resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} dev: true + /is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + dev: true + /is-module@1.0.0: resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} dev: true @@ -12588,6 +13016,11 @@ packages: engines: {node: '>= 0.4'} dev: true + /is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + dev: true + /is-number-object@1.0.7: resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} engines: {node: '>= 0.4'} @@ -12595,6 +13028,14 @@ packages: has-tostringtag: 1.0.0 dev: true + /is-number-object@1.1.0: + resolution: {integrity: sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + has-tostringtag: 1.0.2 + dev: true + /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} @@ -12610,11 +13051,6 @@ packages: engines: {node: '>=8'} dev: true - /is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} - dev: true - /is-plain-obj@1.1.0: resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} engines: {node: '>=0.10.0'} @@ -12645,14 +13081,14 @@ packages: /is-reference@1.2.1: resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 dev: true /is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-tostringtag: 1.0.0 dev: true @@ -12672,12 +13108,24 @@ packages: resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} dev: true + /is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + dev: true + /is-shared-array-buffer@1.0.2: resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} dependencies: call-bind: 1.0.5 dev: true + /is-shared-array-buffer@1.0.3: + resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + dev: true + /is-ssh@1.4.0: resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} dependencies: @@ -12706,11 +13154,28 @@ packages: has-tostringtag: 1.0.0 dev: true + /is-string@1.1.0: + resolution: {integrity: sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + has-tostringtag: 1.0.2 + dev: true + /is-symbol@1.0.4: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} engines: {node: '>= 0.4'} dependencies: - has-symbols: 1.0.3 + has-symbols: 1.1.0 + dev: true + + /is-symbol@1.1.0: + resolution: {integrity: sha512-qS8KkNNXUZ/I+nX6QT8ZS1/Yx0A444yhzdTKxCzKkNjQ9sHErBxJnJAgh+f5YhusYECEcjo4XcyH87hn6+ks0A==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + has-symbols: 1.1.0 + safe-regex-test: 1.0.3 dev: true /is-text-path@1.0.1: @@ -12727,6 +13192,13 @@ packages: which-typed-array: 1.1.13 dev: true + /is-typed-array@1.1.13: + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + engines: {node: '>= 0.4'} + dependencies: + which-typed-array: 1.1.16 + dev: true + /is-typedarray@1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} dev: true @@ -12756,19 +13228,32 @@ packages: resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} dev: true + /is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + dev: true + /is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 dev: true /is-weakset@2.0.2: resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 get-intrinsic: 1.2.2 dev: true + /is-weakset@2.0.3: + resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + dev: true + /is-windows@1.0.2: resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} engines: {node: '>=0.10.0'} @@ -12812,13 +13297,21 @@ packages: '@pkgjs/parseargs': 0.11.0 dev: true + /jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + dev: true + /jake@10.8.7: resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} engines: {node: '>=10'} hasBin: true dependencies: async: 3.2.5 - chalk: 4.1.2 + chalk: 4.1.0 filelist: 1.0.4 minimatch: 3.1.2 dev: true @@ -12862,17 +13355,18 @@ packages: argparse: 2.0.1 dev: true - /jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} - hasBin: true - dev: true - /jsesc@2.5.2: resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} engines: {node: '>=4'} hasBin: true dev: true + /jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + dev: true + /json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} dev: true @@ -12981,13 +13475,13 @@ packages: resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==} dev: true - /lerna@8.1.7: - resolution: {integrity: sha512-v2kkBn8Vqtroo30Pr5/JQ9MygRhnCsoI1jSOf3DxWmcTbkpC5U7c6rGr+7NPK6QrxKbC0/Cj4kuIBMb/7f79sQ==} + /lerna@8.1.9: + resolution: {integrity: sha512-ZRFlRUBB2obm+GkbTR7EbgTMuAdni6iwtTQTMy7LIrQ4UInG44LyfRepljtgUxh4HA0ltzsvWfPkd5J1DKGCeQ==} engines: {node: '>=18.0.0'} hasBin: true dependencies: - '@lerna/create': 8.1.7(typescript@5.5.4) - '@npmcli/arborist': 7.5.3 + '@lerna/create': 8.1.9(typescript@5.5.4) + '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.0 '@npmcli/run-script': 8.1.0 '@nx/devkit': 19.1.1(nx@19.1.1) @@ -13004,7 +13498,7 @@ packages: conventional-changelog-angular: 7.0.0 conventional-changelog-core: 5.0.1 conventional-recommended-bump: 7.0.1 - cosmiconfig: 8.3.6(typescript@5.5.4) + cosmiconfig: 9.0.0(typescript@5.5.4) dedent: 1.5.3 envinfo: 7.13.0 execa: 5.0.0 @@ -13111,16 +13605,16 @@ packages: - supports-color dev: true - /lilconfig@3.0.0: - resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} - engines: {node: '>=14'} - dev: true - /lilconfig@3.1.2: resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} engines: {node: '>=14'} dev: true + /lilconfig@3.1.3: + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} + engines: {node: '>=14'} + dev: true + /lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} dev: true @@ -13297,9 +13791,8 @@ packages: yallist: 4.0.0 dev: true - /magic-string@0.30.11: - resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} - requiresBuild: true + /magic-string@0.30.14: + resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==} dependencies: '@jridgewell/sourcemap-codec': 1.5.0 dev: true @@ -13327,10 +13820,6 @@ packages: semver: 7.6.3 dev: true - /make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} - dev: true - /make-fetch-happen@13.0.1: resolution: {integrity: sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==} engines: {node: ^16.14.0 || >=18.0.0} @@ -13794,7 +14283,7 @@ packages: resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} dependencies: '@types/debug': 4.1.12 - debug: 4.3.4 + debug: 4.3.7 decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 micromark-factory-space: 1.1.0 @@ -13830,6 +14319,14 @@ packages: picomatch: 2.3.1 dev: true + /micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + dev: true + /mime-db@1.52.0: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} @@ -13902,6 +14399,13 @@ packages: brace-expansion: 2.0.1 dev: true + /minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + brace-expansion: 2.0.1 + dev: true + /minimist-options@4.1.0: resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} engines: {node: '>= 6'} @@ -13976,6 +14480,11 @@ packages: engines: {node: '>=16 || 14 >=14.17'} dev: true + /minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + dev: true + /minizlib@2.1.2: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} @@ -13996,16 +14505,17 @@ packages: hasBin: true dev: true - /mock-property@1.0.3: - resolution: {integrity: sha512-2emPTb1reeLLYwHxyVx993iYyCHEiRRO+y8NFXFPL5kl5q14sgTK76cXyEKkeKCHeRw35SfdkUJ10Q1KfHuiIQ==} + /mock-property@1.1.0: + resolution: {integrity: sha512-1/JjbLoGwv87xVsutkX0XJc0M0W4kb40cZl/K41xtTViBOD9JuFPKfyMNTrLJ/ivYAd0aPqu/vduamXO0emTFQ==} engines: {node: '>= 0.4'} dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 functions-have-names: 1.2.3 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 - hasown: 2.0.0 + gopd: 1.1.0 + has-property-descriptors: 1.0.2 + hasown: 2.0.2 isarray: 2.0.5 + object-inspect: 1.13.3 dev: true /modify-values@1.0.1: @@ -14081,6 +14591,14 @@ packages: requiresBuild: true dev: true + /nanoid@3.3.8: + resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + requiresBuild: true + dev: true + optional: true + /natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true @@ -14133,8 +14651,8 @@ packages: resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} dev: true - /node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + /node-releases@2.0.18: + resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} dev: true /node-source-walk@7.0.0: @@ -14193,6 +14711,13 @@ packages: npm-normalize-package-bin: 3.0.1 dev: true + /npm-bundled@3.0.1: + resolution: {integrity: sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dependencies: + npm-normalize-package-bin: 3.0.1 + dev: true + /npm-install-checks@6.3.0: resolution: {integrity: sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} @@ -14232,6 +14757,16 @@ packages: semver: 7.6.3 dev: true + /npm-pick-manifest@9.1.0: + resolution: {integrity: sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==} + engines: {node: ^16.14.0 || >=18.0.0} + dependencies: + npm-install-checks: 6.3.0 + npm-normalize-package-bin: 3.0.1 + npm-package-arg: 11.0.2 + semver: 7.6.3 + dev: true + /npm-registry-fetch@17.1.0: resolution: {integrity: sha512-5+bKQRH0J1xG1uZ1zMNvxW0VEyoNWgJpY9UDuluPFLKDfJ9u2JmmjmTJV1srBGQOROfdBMiVvnH2Zvpbm+xkVA==} engines: {node: ^16.14.0 || >=18.0.0} @@ -14321,7 +14856,7 @@ packages: tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 4.2.0 - tslib: 2.6.2 + tslib: 2.8.1 yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: @@ -14344,15 +14879,16 @@ packages: engines: {node: '>=0.10.0'} dev: true - /object-inspect@1.13.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + /object-inspect@1.13.3: + resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} + engines: {node: '>= 0.4'} dev: true - /object-is@1.1.5: - resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} + /object-is@1.1.6: + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 dev: true @@ -14365,7 +14901,7 @@ packages: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 @@ -14413,26 +14949,16 @@ packages: is-wsl: 2.2.0 dev: true - /open@9.1.0: - resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} - engines: {node: '>=14.16'} - dependencies: - default-browser: 4.0.0 - define-lazy-prop: 3.0.0 - is-inside-container: 1.0.0 - is-wsl: 2.2.0 - dev: true - - /optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + /optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} engines: {node: '>= 0.8.0'} dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + word-wrap: 1.2.5 dev: true /ora@5.3.0: @@ -14596,6 +15122,10 @@ packages: p-reduce: 2.1.0 dev: true + /package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + dev: true + /pacote@18.0.6: resolution: {integrity: sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==} engines: {node: ^16.14.0 || >=18.0.0} @@ -14660,7 +15190,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.26.2 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -14741,6 +15271,14 @@ packages: minipass: 7.0.4 dev: true + /path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + dev: true + /path-type@3.0.0: resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} engines: {node: '>=4'} @@ -14758,20 +15296,26 @@ packages: engines: {node: '>=12'} dev: true - /picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - dev: true - /picocolors@1.0.1: resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} requiresBuild: true dev: true + /picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + requiresBuild: true + dev: true + /picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} dev: true + /picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + dev: true + /pidtree@0.3.1: resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==} engines: {node: '>=0.10'} @@ -14838,26 +15382,36 @@ packages: splaytree: 3.1.2 dev: false - /postcss-load-config@4.0.2(postcss@8.4.40)(ts-node@9.1.1): - resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} - engines: {node: '>= 14'} + /possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} + dev: true + + /postcss-load-config@6.0.1(postcss@8.4.40)(tsx@4.19.2): + resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==} + engines: {node: '>= 18'} peerDependencies: + jiti: '>=1.21.0' postcss: '>=8.0.9' - ts-node: '>=9.0.0' + tsx: ^4.8.1 + yaml: ^2.4.2 peerDependenciesMeta: + jiti: + optional: true postcss: optional: true - ts-node: + tsx: + optional: true + yaml: optional: true dependencies: - lilconfig: 3.0.0 + lilconfig: 3.1.3 postcss: 8.4.40 - ts-node: 9.1.1(typescript@5.5.4) - yaml: 2.3.4 + tsx: 4.19.2 dev: true - /postcss-selector-parser@6.1.1: - resolution: {integrity: sha512-b4dlw/9V8A71rLIDsSwVmak9z2DuBUB7CA1/wSdelNEzqsjoSPeADTWNO09lpH49Diy3/JIZ2bSPB1dI3LJCHg==} + /postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} engines: {node: '>=4'} dependencies: cssesc: 3.0.0 @@ -14885,6 +15439,17 @@ packages: source-map-js: 1.2.0 dev: true + /postcss@8.4.49: + resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} + engines: {node: ^10 || ^12 || >=14} + requiresBuild: true + dependencies: + nanoid: 3.3.8 + picocolors: 1.1.1 + source-map-js: 1.2.1 + dev: true + optional: true + /precinct@12.1.2: resolution: {integrity: sha512-x2qVN3oSOp3D05ihCd8XdkIPuEQsyte7PSxzLqiRgktu79S5Dr1I75/S+zAup8/0cwjoiJTQztE9h0/sWp9bJQ==} engines: {node: '>=18'} @@ -14971,8 +15536,8 @@ packages: resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==} dev: true - /promise-call-limit@3.0.1: - resolution: {integrity: sha512-utl+0x8gIDasV5X+PI5qWEPqH6fJS0pFtQ/4gZ95xfEFb/89dmh+/b895TbFDBLiafBvxD/PGTKfvxl4kH/pQg==} + /promise-call-limit@3.0.2: + resolution: {integrity: sha512-mRPQO2T1QQVw11E7+UdCJu7S61eJVWknzml9sC1heAdj1jxl0fWMBypIt9ZOcLFf8FkG995ZD7RnVk7HH72fZw==} dev: true /promise-inflight@1.0.1: @@ -15180,6 +15745,11 @@ packages: picomatch: 2.3.1 dev: true + /readdirp@4.0.2: + resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} + engines: {node: '>= 14.16.0'} + dev: true + /redent@3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} @@ -15188,8 +15758,21 @@ packages: strip-indent: 3.0.0 dev: true - /regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} + /reflect.getprototypeof@1.0.7: + resolution: {integrity: sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.5 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + gopd: 1.0.1 + which-builtin-type: 1.2.0 + dev: true + + /regenerate-unicode-properties@10.2.0: + resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 @@ -15199,14 +15782,14 @@ packages: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} dev: true - /regenerator-runtime@0.14.0: - resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} + /regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} dev: true /regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.26.0 dev: true /regexp.prototype.flags@1.5.1: @@ -15218,23 +15801,37 @@ packages: set-function-name: 2.0.1 dev: true - /regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + /regexp.prototype.flags@1.5.3: + resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-errors: 1.3.0 + set-function-name: 2.0.2 + dev: true + + /regexpu-core@6.2.0: + resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} engines: {node: '>=4'} dependencies: - '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.1 - regjsparser: 0.9.1 + regenerate-unicode-properties: 10.2.0 + regjsgen: 0.8.0 + regjsparser: 0.12.0 unicode-match-property-ecmascript: 2.0.0 - unicode-match-property-value-ecmascript: 2.1.0 + unicode-match-property-value-ecmascript: 2.2.0 + dev: true + + /regjsgen@0.8.0: + resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} dev: true - /regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + /regjsparser@0.12.0: + resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} hasBin: true dependencies: - jsesc: 0.5.0 + jsesc: 3.0.2 dev: true /remark-gfm@3.0.1: @@ -15421,51 +16018,43 @@ packages: /robust-predicates@2.0.4: resolution: {integrity: sha512-l4NwboJM74Ilm4VKfbAtFeGq7aEjWL+5kVFcmgFA2MrdnQWx9iE/tUGvxY5HyMI7o/WpSIUFLbC5fbeaHgSCYg==} - /rollup-plugin-polyfill-node@0.13.0(rollup@3.29.5): + /rollup-plugin-polyfill-node@0.13.0(rollup@4.28.0): resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==} peerDependencies: rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 dependencies: - '@rollup/plugin-inject': 5.0.5(rollup@3.29.5) - rollup: 3.29.5 - dev: true - - /rollup@3.29.5: - resolution: {integrity: sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} - hasBin: true - optionalDependencies: - fsevents: 2.3.3 + '@rollup/plugin-inject': 5.0.5(rollup@4.28.0) + rollup: 4.28.0 dev: true - /rollup@4.9.0: - resolution: {integrity: sha512-bUHW/9N21z64gw8s6tP4c88P382Bq/L5uZDowHlHx6s/QWpjJXivIAbEw6LZthgSvlEizZBfLC4OAvWe7aoF7A==} + /rollup@4.28.0: + resolution: {integrity: sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true + dependencies: + '@types/estree': 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.9.0 - '@rollup/rollup-android-arm64': 4.9.0 - '@rollup/rollup-darwin-arm64': 4.9.0 - '@rollup/rollup-darwin-x64': 4.9.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.9.0 - '@rollup/rollup-linux-arm64-gnu': 4.9.0 - '@rollup/rollup-linux-arm64-musl': 4.9.0 - '@rollup/rollup-linux-riscv64-gnu': 4.9.0 - '@rollup/rollup-linux-x64-gnu': 4.9.0 - '@rollup/rollup-linux-x64-musl': 4.9.0 - '@rollup/rollup-win32-arm64-msvc': 4.9.0 - '@rollup/rollup-win32-ia32-msvc': 4.9.0 - '@rollup/rollup-win32-x64-msvc': 4.9.0 + '@rollup/rollup-android-arm-eabi': 4.28.0 + '@rollup/rollup-android-arm64': 4.28.0 + '@rollup/rollup-darwin-arm64': 4.28.0 + '@rollup/rollup-darwin-x64': 4.28.0 + '@rollup/rollup-freebsd-arm64': 4.28.0 + '@rollup/rollup-freebsd-x64': 4.28.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.28.0 + '@rollup/rollup-linux-arm-musleabihf': 4.28.0 + '@rollup/rollup-linux-arm64-gnu': 4.28.0 + '@rollup/rollup-linux-arm64-musl': 4.28.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.28.0 + '@rollup/rollup-linux-riscv64-gnu': 4.28.0 + '@rollup/rollup-linux-s390x-gnu': 4.28.0 + '@rollup/rollup-linux-x64-gnu': 4.28.0 + '@rollup/rollup-linux-x64-musl': 4.28.0 + '@rollup/rollup-win32-arm64-msvc': 4.28.0 + '@rollup/rollup-win32-ia32-msvc': 4.28.0 + '@rollup/rollup-win32-x64-msvc': 4.28.0 fsevents: 2.3.3 dev: true - /run-applescript@5.0.0: - resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} - engines: {node: '>=12'} - dependencies: - execa: 5.1.1 - dev: true - /run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} engines: {node: '>=0.12.0'} @@ -15484,7 +16073,7 @@ packages: /rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: - tslib: 2.6.2 + tslib: 2.8.1 dev: true /sade@1.8.1: @@ -15504,6 +16093,16 @@ packages: isarray: 2.0.5 dev: true + /safe-array-concat@1.1.2: + resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} + engines: {node: '>=0.4'} + dependencies: + call-bind: 1.0.7 + get-intrinsic: 1.2.4 + has-symbols: 1.1.0 + isarray: 2.0.5 + dev: true + /safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} dev: true @@ -15520,6 +16119,15 @@ packages: is-regex: 1.1.4 dev: true + /safe-regex-test@1.0.3: + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-regex: 1.1.4 + dev: true + /safe-stable-stringify@2.4.3: resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} engines: {node: '>=10'} @@ -15547,14 +16155,6 @@ packages: hasBin: true dev: true - /semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true - /semver@7.6.3: resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} engines: {node: '>=10'} @@ -15575,21 +16175,43 @@ packages: resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} engines: {node: '>= 0.4'} dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 get-intrinsic: 1.2.2 - gopd: 1.0.1 - has-property-descriptors: 1.0.1 + gopd: 1.1.0 + has-property-descriptors: 1.0.2 + dev: true + + /set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.4 + gopd: 1.1.0 + has-property-descriptors: 1.0.2 dev: true /set-function-name@2.0.1: resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} engines: {node: '>= 0.4'} dependencies: - define-data-property: 1.1.1 + define-data-property: 1.1.4 functions-have-names: 1.2.3 has-property-descriptors: 1.0.1 dev: true + /set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + dev: true + /shallow-clone@3.0.1: resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} engines: {node: '>=8'} @@ -15628,9 +16250,19 @@ packages: /side-channel@1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 get-intrinsic: 1.2.2 - object-inspect: 1.13.1 + object-inspect: 1.13.3 + dev: true + + /side-channel@1.0.6: + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.4 + object-inspect: 1.13.3 dev: true /signal-exit@3.0.7: @@ -15706,7 +16338,7 @@ packages: engines: {node: '>= 14'} dependencies: agent-base: 7.1.1 - debug: 4.3.4 + debug: 4.3.7 socks: 2.7.1 transitivePeerDependencies: - supports-color @@ -15747,6 +16379,13 @@ packages: requiresBuild: true dev: true + /source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: true + optional: true + /source-map-support@0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} dependencies: @@ -15871,13 +16510,14 @@ packages: es-abstract: 1.22.3 dev: true - /string.prototype.trim@1.2.8: - resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} + /string.prototype.trim@1.2.9: + resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 - es-abstract: 1.22.3 + es-abstract: 1.23.5 + es-object-atoms: 1.0.0 dev: true /string.prototype.trimend@1.0.7: @@ -15888,6 +16528,14 @@ packages: es-abstract: 1.22.3 dev: true + /string.prototype.trimend@1.0.8: + resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + dev: true + /string.prototype.trimstart@1.0.7: resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} dependencies: @@ -15896,6 +16544,15 @@ packages: es-abstract: 1.22.3 dev: true + /string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + dev: true + /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: @@ -15997,14 +16654,14 @@ packages: commander: 12.1.0 dev: true - /sucrase@3.34.0: - resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} - engines: {node: '>=8'} + /sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} hasBin: true dependencies: - '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/gen-mapping': 0.3.5 commander: 4.1.1 - glob: 7.1.6 + glob: 10.4.5 lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.6 @@ -16048,12 +16705,12 @@ packages: tinyqueue: 2.0.3 dev: false - /synckit@0.8.6: - resolution: {integrity: sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA==} + /synckit@0.9.2: + resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==} engines: {node: ^14.18.0 || >=16.0.0} dependencies: - '@pkgr/utils': 2.4.2 - tslib: 2.6.2 + '@pkgr/core': 0.1.1 + tslib: 2.8.1 dev: true /tapable@2.2.1: @@ -16061,32 +16718,32 @@ packages: engines: {node: '>=6'} dev: true - /tape@5.7.2: - resolution: {integrity: sha512-cvSyprYahyOYXbtBwV/B7nrx7kINeZ3VZ9fKoSywoPwZN3oQ1WVLvt+Vl0XCz/gi37CDrY3dlW790nzviIzoPw==} + /tape@5.9.0: + resolution: {integrity: sha512-czbGgxSVwRlbB3Ly/aqQrNwrDAzKHDW/kVXegp4hSFmR2c8qqm3hCgZbUy1+3QAQFGhPDG7J56UsV1uNilBFCA==} hasBin: true dependencies: - '@ljharb/resumer': 0.0.1 - '@ljharb/through': 2.3.11 - array.prototype.every: 1.1.5 - call-bind: 1.0.5 + '@ljharb/resumer': 0.1.3 + '@ljharb/through': 2.3.13 + array.prototype.every: 1.1.6 + call-bind: 1.0.7 deep-equal: 2.2.3 defined: 1.0.1 dotignore: 0.1.2 for-each: 0.3.3 get-package-type: 0.1.0 glob: 7.2.3 - has-dynamic-import: 2.0.1 - hasown: 2.0.0 + has-dynamic-import: 2.1.0 + hasown: 2.0.2 inherits: 2.0.4 is-regex: 1.1.4 minimist: 1.2.8 - mock-property: 1.0.3 - object-inspect: 1.13.1 - object-is: 1.1.5 + mock-property: 1.1.0 + object-inspect: 1.13.3 + object-is: 1.1.6 object-keys: 1.1.1 object.assign: 4.1.5 resolve: 2.0.0-next.5 - string.prototype.trim: 1.2.8 + string.prototype.trim: 1.2.9 dev: true /tar-stream@2.2.0: @@ -16137,10 +16794,6 @@ packages: resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} dev: true - /text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} - dev: true - /thenify-all@1.6.0: resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} engines: {node: '>=0.8'} @@ -16165,14 +16818,21 @@ packages: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} dev: true - /tinyqueue@2.0.3: - resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==} + /tinyexec@0.3.1: + resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} + dev: true - /titleize@3.0.0: - resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} - engines: {node: '>=12'} + /tinyglobby@0.2.10: + resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} + engines: {node: '>=12.0.0'} + dependencies: + fdir: 6.4.2(picomatch@4.0.2) + picomatch: 4.0.2 dev: true + /tinyqueue@2.0.3: + resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==} + /tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} @@ -16251,15 +16911,6 @@ packages: resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} dev: true - /ts-api-utils@1.0.3(typescript@5.5.4): - resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} - engines: {node: '>=16.13.0'} - peerDependencies: - typescript: '>=4.2.0' - dependencies: - typescript: 5.5.4 - dev: true - /ts-api-utils@1.3.0(typescript@5.5.4): resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} engines: {node: '>=16'} @@ -16273,22 +16924,6 @@ packages: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} dev: true - /ts-node@9.1.1(typescript@5.5.4): - resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} - engines: {node: '>=10.0.0'} - hasBin: true - peerDependencies: - typescript: '>=2.7' - dependencies: - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - source-map-support: 0.5.21 - typescript: 5.5.4 - yn: 3.1.1 - dev: true - /tsconfig-paths@4.2.0: resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} engines: {node: '>=6'} @@ -16298,11 +16933,11 @@ packages: strip-bom: 3.0.0 dev: true - /tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + /tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} - /tsup@8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.3.3): - resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==} + /tsup@8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.3.3): + resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==} engines: {node: '>=18'} hasBin: true peerDependencies: @@ -16320,29 +16955,33 @@ packages: typescript: optional: true dependencies: - bundle-require: 4.0.2(esbuild@0.19.11) + bundle-require: 5.0.0(esbuild@0.24.0) cac: 6.7.14 - chokidar: 3.5.3 - debug: 4.3.6 - esbuild: 0.19.11 - execa: 5.1.1 - globby: 11.1.0 + chokidar: 4.0.1 + consola: 3.2.3 + debug: 4.3.7 + esbuild: 0.24.0 joycon: 3.1.1 + picocolors: 1.1.1 postcss: 8.4.40 - postcss-load-config: 4.0.2(postcss@8.4.40)(ts-node@9.1.1) + postcss-load-config: 6.0.1(postcss@8.4.40)(tsx@4.19.2) resolve-from: 5.0.0 - rollup: 4.9.0 + rollup: 4.28.0 source-map: 0.8.0-beta.0 - sucrase: 3.34.0 + sucrase: 3.35.0 + tinyexec: 0.3.1 + tinyglobby: 0.2.10 tree-kill: 1.2.2 typescript: 5.3.3 transitivePeerDependencies: + - jiti - supports-color - - ts-node + - tsx + - yaml dev: true - /tsup@8.0.1(postcss@8.4.40)(ts-node@9.1.1)(typescript@5.5.4): - resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==} + /tsup@8.3.5(postcss@8.4.40)(tsx@4.19.2)(typescript@5.5.4): + resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==} engines: {node: '>=18'} hasBin: true peerDependencies: @@ -16360,34 +16999,38 @@ packages: typescript: optional: true dependencies: - bundle-require: 4.0.2(esbuild@0.19.11) + bundle-require: 5.0.0(esbuild@0.24.0) cac: 6.7.14 - chokidar: 3.5.3 - debug: 4.3.4 - esbuild: 0.19.11 - execa: 5.1.1 - globby: 11.1.0 + chokidar: 4.0.1 + consola: 3.2.3 + debug: 4.3.7 + esbuild: 0.24.0 joycon: 3.1.1 + picocolors: 1.1.1 postcss: 8.4.40 - postcss-load-config: 4.0.2(postcss@8.4.40)(ts-node@9.1.1) + postcss-load-config: 6.0.1(postcss@8.4.40)(tsx@4.19.2) resolve-from: 5.0.0 - rollup: 4.9.0 + rollup: 4.28.0 source-map: 0.8.0-beta.0 - sucrase: 3.34.0 + sucrase: 3.35.0 + tinyexec: 0.3.1 + tinyglobby: 0.2.10 tree-kill: 1.2.2 typescript: 5.5.4 transitivePeerDependencies: + - jiti - supports-color - - ts-node + - tsx + - yaml dev: true - /tsx@4.6.2: - resolution: {integrity: sha512-QPpBdJo+ZDtqZgAnq86iY/PD2KYCUPSUGIunHdGwyII99GKH+f3z3FZ8XNFLSGQIA4I365ui8wnQpl8OKLqcsg==} + /tsx@4.19.2: + resolution: {integrity: sha512-pOUl6Vo2LUq/bSa8S5q7b91cgNSjctn9ugq/+Mvow99qW6x/UZYwzxy/3NmqoT66eHYfCVvFvACC58UBPFf28g==} engines: {node: '>=18.0.0'} hasBin: true dependencies: - esbuild: 0.18.20 - get-tsconfig: 4.7.2 + esbuild: 0.23.1 + get-tsconfig: 4.8.1 optionalDependencies: fsevents: 2.3.3 dev: true @@ -16397,7 +17040,7 @@ packages: engines: {node: ^16.14.0 || >=18.0.0} dependencies: '@tufjs/models': 2.0.1 - debug: 4.3.4 + debug: 4.3.7 make-fetch-happen: 13.0.1 transitivePeerDependencies: - supports-color @@ -16415,11 +17058,6 @@ packages: engines: {node: '>=10'} dev: true - /type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} - dev: true - /type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} @@ -16454,6 +17092,15 @@ packages: is-typed-array: 1.1.12 dev: true + /typed-array-buffer@1.0.2: + resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + es-errors: 1.3.0 + is-typed-array: 1.1.13 + dev: true + /typed-array-byte-length@1.0.0: resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} engines: {node: '>= 0.4'} @@ -16464,6 +17111,17 @@ packages: is-typed-array: 1.1.12 dev: true + /typed-array-byte-length@1.0.1: + resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.1.0 + has-proto: 1.1.0 + is-typed-array: 1.1.13 + dev: true + /typed-array-byte-offset@1.0.0: resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} engines: {node: '>= 0.4'} @@ -16475,6 +17133,19 @@ packages: is-typed-array: 1.1.12 dev: true + /typed-array-byte-offset@1.0.3: + resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.1.0 + has-proto: 1.1.0 + is-typed-array: 1.1.13 + reflect.getprototypeof: 1.0.7 + dev: true + /typed-array-length@1.0.4: resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} dependencies: @@ -16483,6 +17154,18 @@ packages: is-typed-array: 1.1.12 dev: true + /typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.1.0 + is-typed-array: 1.1.13 + possible-typed-array-names: 1.0.0 + reflect.getprototypeof: 1.0.7 + dev: true + /typedarray-to-buffer@3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: @@ -16493,6 +17176,25 @@ packages: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} dev: true + /typescript-eslint@8.17.0(eslint@9.16.0)(typescript@5.5.4): + resolution: {integrity: sha512-409VXvFd/f1br1DCbuKNFqQpXICoTB+V51afcwG1pn1a3Cp92MqAUges3YjwEdQ0cMUoCIodjVDAYzyD8h3SYA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0)(eslint@9.16.0)(typescript@5.5.4) + '@typescript-eslint/parser': 8.17.0(eslint@9.16.0)(typescript@5.5.4) + '@typescript-eslint/utils': 8.17.0(eslint@9.16.0)(typescript@5.5.4) + eslint: 9.16.0 + typescript: 5.5.4 + transitivePeerDependencies: + - supports-color + dev: true + /typescript@5.3.3: resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} engines: {node: '>=14.17'} @@ -16505,8 +17207,8 @@ packages: hasBin: true dev: true - /uglify-js@3.19.1: - resolution: {integrity: sha512-y/2wiW+ceTYR2TSSptAhfnEtpLaQ4Ups5zrjB2d3kuVxHj16j/QJwPl5PvuGy9uARb39J0+iKxcRPvtpsx4A4A==} + /uglify-js@3.19.3: + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true @@ -16527,8 +17229,8 @@ packages: engines: {node: '>=0.10.0'} dev: true - /unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + /unicode-canonical-property-names-ecmascript@2.0.1: + resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} engines: {node: '>=4'} dev: true @@ -16536,12 +17238,12 @@ packages: resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} engines: {node: '>=4'} dependencies: - unicode-canonical-property-names-ecmascript: 2.0.0 + unicode-canonical-property-names-ecmascript: 2.0.1 unicode-property-aliases-ecmascript: 2.1.0 dev: true - /unicode-match-property-value-ecmascript@2.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + /unicode-match-property-value-ecmascript@2.2.0: + resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==} engines: {node: '>=4'} dev: true @@ -16633,25 +17335,20 @@ packages: engines: {node: '>= 10.0.0'} dev: true - /untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} - dev: true - /upath@2.0.1: resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==} engines: {node: '>=4'} dev: true - /update-browserslist-db@1.0.13(browserslist@4.22.2): - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + /update-browserslist-db@1.1.1(browserslist@4.24.2): + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.22.2 - escalade: 3.1.1 - picocolors: 1.0.0 + browserslist: 4.24.2 + escalade: 3.2.0 + picocolors: 1.1.1 dev: true /uri-js@4.4.1: @@ -16798,6 +17495,36 @@ packages: is-symbol: 1.0.4 dev: true + /which-boxed-primitive@1.1.0: + resolution: {integrity: sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng==} + engines: {node: '>= 0.4'} + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.0 + is-number-object: 1.1.0 + is-string: 1.1.0 + is-symbol: 1.1.0 + dev: true + + /which-builtin-type@1.2.0: + resolution: {integrity: sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + function.prototype.name: 1.1.6 + has-tostringtag: 1.0.2 + is-async-function: 2.0.0 + is-date-object: 1.0.5 + is-finalizationregistry: 1.1.0 + is-generator-function: 1.0.10 + is-regex: 1.1.4 + is-weakref: 1.0.2 + isarray: 2.0.5 + which-boxed-primitive: 1.1.0 + which-collection: 1.0.2 + which-typed-array: 1.1.16 + dev: true + /which-collection@1.0.1: resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} dependencies: @@ -16807,17 +17534,38 @@ packages: is-weakset: 2.0.2 dev: true + /which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.3 + dev: true + /which-typed-array@1.1.13: resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 dev: true + /which-typed-array@1.1.16: + resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==} + engines: {node: '>= 0.4'} + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.7 + for-each: 0.3.3 + gopd: 1.1.0 + has-tostringtag: 1.0.2 + dev: true + /which@1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true @@ -16877,6 +17625,11 @@ packages: resolution: {integrity: sha512-ZnV3yH8/k58ZPACOXeiHaMuXIiaTk1t0hSUVisbO0t4RjA5wPpUytcxeyiN2h+LZRrmuHIh/1UlrR9e7DHDvTw==} dev: true + /word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + dev: true + /wordwrap@1.0.0: resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} dev: true @@ -17003,11 +17756,6 @@ packages: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} dev: true - /yaml@2.3.4: - resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} - engines: {node: '>= 14'} - dev: true - /yaml@2.5.0: resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==} engines: {node: '>= 14'} @@ -17058,11 +17806,6 @@ packages: yargs-parser: 21.1.1 dev: true - /yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} - dev: true - /yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'}