diff --git a/.monorepolint.config.mjs b/.monorepolint.config.mjs
index 515e891174..9899b1ceab 100644
--- a/.monorepolint.config.mjs
+++ b/.monorepolint.config.mjs
@@ -235,8 +235,8 @@ export default {
devDependencies: {
benchmark: "^2.1.4",
tape: "^5.9.0",
- tsup: "^8.4.0",
- tsx: "^4.19.4",
+ tsup: "^8.5.1",
+ tsx: "^4.21.0",
},
},
includePackages: [...TS_PACKAGES, ...JS_PACKAGES],
@@ -250,7 +250,7 @@ export default {
devDependencies: {
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
- typescript: "^5.8.3",
+ typescript: "^5.9.3",
},
},
includePackages: TS_PACKAGES,
@@ -268,7 +268,7 @@ export default {
requireDependency({
options: {
dependencies: {
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
},
},
includePackages: [MAIN_PACKAGE, ...TS_PACKAGES, ...JS_PACKAGES],
diff --git a/eslint.config.mjs b/eslint.config.mjs
index f04c319949..d050d69f56 100644
--- a/eslint.config.mjs
+++ b/eslint.config.mjs
@@ -46,6 +46,7 @@ export default tsEslint.config(
"no-redeclare": "off",
"no-var": "off",
"prefer-const": "off",
+ "no-useless-assignment": "off", // the remaning errors here require more thought to clean up
},
},
{
@@ -54,6 +55,7 @@ export default tsEslint.config(
rules: {
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-unused-expressions": "off",
+ "no-useless-assignment": "off",
},
},
{
diff --git a/package.json b/package.json
index 4e9b43c533..8d874a1a18 100644
--- a/package.json
+++ b/package.json
@@ -30,38 +30,38 @@
},
"packageManager": "pnpm@10.10.0+sha256.fa0f513aa8191764d2b6b432420788c270f07b4f999099b65bb2010eec702a30",
"devDependencies": {
- "@eslint/eslintrc": "^3.3.1",
- "@eslint/js": "^9.31.0",
- "@monorepolint/cli": "0.5.0",
- "@monorepolint/config": "0.5.0",
- "@monorepolint/core": "0.5.0",
- "@monorepolint/rules": "0.5.0",
- "@types/node": "22.15.3",
- "acorn": "^8.14.1",
- "camelcase": "^8.0.0",
- "d3-queue": "*",
- "decamelize": "^6.0.0",
- "dependency-tree": "^11.1.1",
+ "@eslint/eslintrc": "^3.3.4",
+ "@eslint/js": "^10.0.1",
+ "@monorepolint/cli": "0.6.0-alpha.5",
+ "@monorepolint/config": "0.6.0-alpha.6",
+ "@monorepolint/core": "0.6.0-alpha.6",
+ "@monorepolint/rules": "0.6.0-alpha.6",
+ "@types/node": "25.3.2",
+ "acorn": "^8.16.0",
+ "camelcase": "^9.0.0",
+ "d3-queue": "^3.0.7",
+ "decamelize": "^6.0.1",
+ "dependency-tree": "^11.3.0",
"documentation": "^14.0.3",
- "es-check": "^9.0.0",
- "eslint": "^9.31.0",
+ "es-check": "^9.6.1",
+ "eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
- "eslint-plugin-prettier": "^5.5.3",
+ "eslint-plugin-prettier": "^5.5.5",
"esm": "^3.2.25",
- "fs-extra": "^11.3.0",
- "glob": "^11.1.0",
- "globals": "^16.0.0",
+ "fs-extra": "^11.3.3",
+ "glob": "^13.0.6",
+ "globals": "^17.3.0",
"husky": "^9.1.7",
- "lerna": "^9.0.3",
- "lint-staged": "^15.5.1",
+ "lerna": "^9.0.4",
+ "lint-staged": "^16.2.7",
"load-json-file": "^7.0.1",
- "meow": "^13.2.0",
- "prettier": "^3.5.3",
+ "meow": "^14.1.0",
+ "prettier": "^3.8.1",
"progress": "^2.0.3",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "typescript-eslint": "^8.38.0",
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "typescript-eslint": "^8.56.1",
"yamljs": "^0.3.0"
}
}
diff --git a/packages/turf-along/package.json b/packages/turf-along/package.json
index 87d6ecf76f..431cd25909 100644
--- a/packages/turf-along/package.json
+++ b/packages/turf-along/package.json
@@ -57,9 +57,9 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/bearing": "workspace:*",
@@ -67,7 +67,7 @@
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-angle/package.json b/packages/turf-angle/package.json
index 503fc8633f..2a3326a82f 100644
--- a/packages/turf-angle/package.json
+++ b/packages/turf-angle/package.json
@@ -58,20 +58,20 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bearing": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/rhumb-bearing": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-area/package.json b/packages/turf-area/package.json
index f361a6f843..5d65e83bc6 100644
--- a/packages/turf-area/package.json
+++ b/packages/turf-area/package.json
@@ -56,15 +56,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-bbox-clip/package.json b/packages/turf-bbox-clip/package.json
index bbc7836ce0..8e6a94459f 100644
--- a/packages/turf-bbox-clip/package.json
+++ b/packages/turf-bbox-clip/package.json
@@ -63,15 +63,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-bbox-polygon/package.json b/packages/turf-bbox-polygon/package.json
index ce3b8b5636..43d5ab96da 100644
--- a/packages/turf-bbox-polygon/package.json
+++ b/packages/turf-bbox-polygon/package.json
@@ -56,13 +56,13 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-bbox/package.json b/packages/turf-bbox/package.json
index b96085d904..1ea87e8eb3 100644
--- a/packages/turf-bbox/package.json
+++ b/packages/turf-bbox/package.json
@@ -57,14 +57,14 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-bearing/package.json b/packages/turf-bearing/package.json
index e462ab84f5..e2df319660 100644
--- a/packages/turf-bearing/package.json
+++ b/packages/turf-bearing/package.json
@@ -54,15 +54,15 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-bezier-spline/package.json b/packages/turf-bezier-spline/package.json
index 1d0c223aca..52a89a435e 100644
--- a/packages/turf-bezier-spline/package.json
+++ b/packages/turf-bezier-spline/package.json
@@ -57,15 +57,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-boolean-clockwise/package.json b/packages/turf-boolean-clockwise/package.json
index 966944aed9..4e0415d55d 100644
--- a/packages/turf-boolean-clockwise/package.json
+++ b/packages/turf-boolean-clockwise/package.json
@@ -59,17 +59,17 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-boolean-concave/package.json b/packages/turf-boolean-concave/package.json
index 1376602927..0388a1df8e 100644
--- a/packages/turf-boolean-concave/package.json
+++ b/packages/turf-boolean-concave/package.json
@@ -58,17 +58,17 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-boolean-contains/package.json b/packages/turf-boolean-contains/package.json
index 26a9d73bc1..f22711ed4f 100644
--- a/packages/turf-boolean-contains/package.json
+++ b/packages/turf-boolean-contains/package.json
@@ -59,14 +59,14 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "boolean-jsts": "*",
- "boolean-shapely": "*",
- "glob": "^11.1.0",
+ "boolean-jsts": "^0.0.1",
+ "boolean-shapely": "^0.1.2",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/bbox": "workspace:*",
@@ -75,7 +75,7 @@
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/line-split": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-boolean-crosses/package.json b/packages/turf-boolean-crosses/package.json
index c8792e3833..8aa5d3599d 100644
--- a/packages/turf-boolean-crosses/package.json
+++ b/packages/turf-boolean-crosses/package.json
@@ -59,13 +59,13 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "boolean-shapely": "*",
- "glob": "^11.1.0",
+ "boolean-shapely": "^0.1.2",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/boolean-equal": "workspace:*",
@@ -74,7 +74,7 @@
"@turf/invariant": "workspace:*",
"@turf/line-intersect": "workspace:*",
"@turf/polygon-to-line": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-boolean-disjoint/package.json b/packages/turf-boolean-disjoint/package.json
index dabffa9d36..cb60c13f25 100644
--- a/packages/turf-boolean-disjoint/package.json
+++ b/packages/turf-boolean-disjoint/package.json
@@ -58,12 +58,12 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "boolean-shapely": "*",
+ "boolean-shapely": "^0.1.2",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "workspace:*",
@@ -71,7 +71,7 @@
"@turf/line-intersect": "workspace:*",
"@turf/meta": "workspace:*",
"@turf/polygon-to-line": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-boolean-equal/package.json b/packages/turf-boolean-equal/package.json
index 03bb70fa55..e81d7ceac0 100644
--- a/packages/turf-boolean-equal/package.json
+++ b/packages/turf-boolean-equal/package.json
@@ -61,19 +61,19 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "boolean-shapely": "*",
- "glob": "^11.1.0",
+ "boolean-shapely": "^0.1.2",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/clean-coords": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"geojson-equality-ts": "^1.0.2",
"tslib": "^2.8.1"
}
diff --git a/packages/turf-boolean-intersects/package.json b/packages/turf-boolean-intersects/package.json
index 511a116809..2c09cefe50 100644
--- a/packages/turf-boolean-intersects/package.json
+++ b/packages/turf-boolean-intersects/package.json
@@ -59,18 +59,18 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "boolean-shapely": "*",
+ "boolean-shapely": "^0.1.2",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/boolean-disjoint": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-boolean-overlap/package.json b/packages/turf-boolean-overlap/package.json
index 5a591eacb3..5795843238 100644
--- a/packages/turf-boolean-overlap/package.json
+++ b/packages/turf-boolean-overlap/package.json
@@ -60,13 +60,13 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "boolean-shapely": "*",
- "glob": "^11.1.0",
+ "boolean-shapely": "^0.1.2",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
@@ -74,7 +74,7 @@
"@turf/line-intersect": "workspace:*",
"@turf/line-overlap": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"geojson-equality-ts": "^1.0.2",
"tslib": "^2.8.1"
}
diff --git a/packages/turf-boolean-parallel/package.json b/packages/turf-boolean-parallel/package.json
index 0d1b33417e..cd8e58f295 100644
--- a/packages/turf-boolean-parallel/package.json
+++ b/packages/turf-boolean-parallel/package.json
@@ -59,17 +59,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/clean-coords": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/line-segment": "workspace:*",
"@turf/rhumb-bearing": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"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 022313b8d8..59afc319bb 100644
--- a/packages/turf-boolean-point-in-polygon/package.json
+++ b/packages/turf-boolean-point-in-polygon/package.json
@@ -57,15 +57,15 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
- "point-in-polygon-hao": "^1.1.0",
+ "@types/geojson": "^7946.0.16",
+ "point-in-polygon-hao": "^1.2.4",
"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 0024c07988..a06f41fbe0 100644
--- a/packages/turf-boolean-point-on-line/package.json
+++ b/packages/turf-boolean-point-on-line/package.json
@@ -55,18 +55,18 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-boolean-touches/package.json b/packages/turf-boolean-touches/package.json
index 4cf04fef5a..5cccad0554 100644
--- a/packages/turf-boolean-touches/package.json
+++ b/packages/turf-boolean-touches/package.json
@@ -60,21 +60,21 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "boolean-jsts": "*",
- "boolean-shapely": "*",
- "glob": "^11.1.0",
+ "boolean-jsts": "^0.0.1",
+ "boolean-shapely": "^0.1.2",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "workspace:*",
"@turf/boolean-point-on-line": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-boolean-valid/package.json b/packages/turf-boolean-valid/package.json
index bf5104d873..5eb57f54ce 100644
--- a/packages/turf-boolean-valid/package.json
+++ b/packages/turf-boolean-valid/package.json
@@ -58,14 +58,14 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "boolean-jsts": "*",
- "boolean-shapely": "*",
- "glob": "^11.1.0",
+ "boolean-jsts": "^0.0.1",
+ "boolean-shapely": "^0.1.2",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/bbox": "workspace:*",
@@ -77,8 +77,8 @@
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/line-intersect": "workspace:*",
- "@types/geojson": "^7946.0.10",
- "geojson-polygon-self-intersections": "^1.2.1",
+ "@types/geojson": "^7946.0.16",
+ "geojson-polygon-self-intersections": "^3.0.0",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-boolean-within/package.json b/packages/turf-boolean-within/package.json
index 2b32d90c96..fca48d9e1d 100644
--- a/packages/turf-boolean-within/package.json
+++ b/packages/turf-boolean-within/package.json
@@ -61,14 +61,14 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "boolean-jsts": "*",
- "boolean-shapely": "*",
- "glob": "^11.1.0",
+ "boolean-jsts": "^0.0.1",
+ "boolean-shapely": "^0.1.2",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/bbox": "workspace:*",
@@ -77,7 +77,7 @@
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/line-split": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-buffer/package.json b/packages/turf-buffer/package.json
index 0bf961b7ce..f93c712172 100644
--- a/packages/turf-buffer/package.json
+++ b/packages/turf-buffer/package.json
@@ -66,18 +66,18 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bbox": "workspace:*",
"@turf/center": "workspace:*",
"@turf/helpers": "workspace:*",
- "@turf/jsts": "^2.7.1",
+ "@turf/jsts": "^2.7.2",
"@turf/meta": "workspace:*",
"@turf/projection": "workspace:*",
- "@types/geojson": "^7946.0.10",
- "d3-geo": "1.7.1"
+ "@types/geojson": "^7946.0.16",
+ "d3-geo": "3.1.1"
}
}
diff --git a/packages/turf-center-mean/package.json b/packages/turf-center-mean/package.json
index f8cba276e7..537db30595 100644
--- a/packages/turf-center-mean/package.json
+++ b/packages/turf-center-mean/package.json
@@ -63,19 +63,19 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bbox": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-center-median/package.json b/packages/turf-center-median/package.json
index fdc2214f7f..61b4c709e9 100644
--- a/packages/turf-center-median/package.json
+++ b/packages/turf-center-median/package.json
@@ -61,10 +61,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/center-mean": "workspace:*",
@@ -72,7 +72,7 @@
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-center-of-mass/package.json b/packages/turf-center-of-mass/package.json
index 7fdd12e809..6c7473fad2 100644
--- a/packages/turf-center-of-mass/package.json
+++ b/packages/turf-center-of-mass/package.json
@@ -53,13 +53,13 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/centroid": "workspace:*",
@@ -67,7 +67,7 @@
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-center/package.json b/packages/turf-center/package.json
index 426b00dea3..c814a6244a 100644
--- a/packages/turf-center/package.json
+++ b/packages/turf-center/package.json
@@ -59,18 +59,18 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bbox": "workspace:*",
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-centroid/package.json b/packages/turf-centroid/package.json
index ba7e0af8ff..6715ef3f14 100644
--- a/packages/turf-centroid/package.json
+++ b/packages/turf-centroid/package.json
@@ -55,18 +55,18 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-circle/package.json b/packages/turf-circle/package.json
index 298f414829..ab909d455b 100644
--- a/packages/turf-circle/package.json
+++ b/packages/turf-circle/package.json
@@ -54,22 +54,22 @@
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
},
"devDependencies": {
- "@placemarkio/check-geojson": "^0.1.12",
+ "@placemarkio/check-geojson": "^0.1.14",
"@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/destination": "workspace:*",
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-clean-coords/package.json b/packages/turf-clean-coords/package.json
index 56eddd7e09..7eedd70286 100644
--- a/packages/turf-clean-coords/package.json
+++ b/packages/turf-clean-coords/package.json
@@ -62,16 +62,16 @@
"geojson-equality-ts": "^1.0.2",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/boolean-point-on-line": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-clone/package.json b/packages/turf-clone/package.json
index 4697dc5629..e9e0f95f78 100644
--- a/packages/turf-clone/package.json
+++ b/packages/turf-clone/package.json
@@ -58,13 +58,13 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-clusters-dbscan/package.json b/packages/turf-clusters-dbscan/package.json
index 1f6fb6f1df..d2f6e0c4a1 100644
--- a/packages/turf-clusters-dbscan/package.json
+++ b/packages/turf-clusters-dbscan/package.json
@@ -66,19 +66,19 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"chromatism": "^3.0.0",
- "concaveman": "^1.2.1",
+ "concaveman": "^2.0.0",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/clone": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"@types/geokdbush": "^1.1.5",
"geokdbush": "^2.0.1",
"kdbush": "^4.0.2",
diff --git a/packages/turf-clusters-kmeans/package.json b/packages/turf-clusters-kmeans/package.json
index 72baa3f002..4ff6ee6b00 100644
--- a/packages/turf-clusters-kmeans/package.json
+++ b/packages/turf-clusters-kmeans/package.json
@@ -63,25 +63,25 @@
"@turf/clusters": "workspace:*",
"@turf/random": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/skmeans": "^0.11.7",
+ "@types/skmeans": "^0.11.8",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"chromatism": "^3.0.0",
- "concaveman": "^1.2.1",
+ "concaveman": "^2.0.0",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/clone": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
- "skmeans": "0.9.7",
+ "@types/geojson": "^7946.0.16",
+ "skmeans": "0.11.3",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-clusters/package.json b/packages/turf-clusters/package.json
index 21d42c9f33..72afd9a56b 100644
--- a/packages/turf-clusters/package.json
+++ b/packages/turf-clusters/package.json
@@ -60,14 +60,14 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-collect/package.json b/packages/turf-collect/package.json
index 5e4e293374..374258612e 100644
--- a/packages/turf-collect/package.json
+++ b/packages/turf-collect/package.json
@@ -57,20 +57,20 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
- "@types/rbush": "^3.0.4",
+ "@types/rbush": "^4.0.0",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/bbox": "workspace:*",
"@turf/boolean-point-in-polygon": "workspace:*",
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
- "rbush": "^3.0.1",
+ "@types/geojson": "^7946.0.16",
+ "rbush": "^4.0.1",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-combine/package.json b/packages/turf-combine/package.json
index 1a9d699045..9d7496ce9d 100644
--- a/packages/turf-combine/package.json
+++ b/packages/turf-combine/package.json
@@ -56,14 +56,14 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-concave/package.json b/packages/turf-concave/package.json
index 253c35500e..c0ef259db9 100644
--- a/packages/turf-concave/package.json
+++ b/packages/turf-concave/package.json
@@ -64,15 +64,15 @@
"devDependencies": {
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
- "@types/topojson-client": "3.1.3",
- "@types/topojson-server": "3.0.3",
+ "@types/topojson-client": "3.1.5",
+ "@types/topojson-server": "3.0.4",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/clone": "workspace:*",
@@ -81,9 +81,9 @@
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
"@turf/tin": "workspace:*",
- "@types/geojson": "^7946.0.10",
- "topojson-client": "3.x",
- "topojson-server": "3.x",
+ "@types/geojson": "^7946.0.16",
+ "topojson-client": "~3.1.0",
+ "topojson-server": "~3.0.1",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-convex/package.json b/packages/turf-convex/package.json
index e165be5138..a5934a3ae0 100644
--- a/packages/turf-convex/package.json
+++ b/packages/turf-convex/package.json
@@ -53,19 +53,19 @@
"@types/concaveman": "^1.1.6",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
- "concaveman": "^1.2.1",
+ "@types/geojson": "^7946.0.16",
+ "concaveman": "^2.0.0",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-destination/package.json b/packages/turf-destination/package.json
index cd79d57de0..a7faac3d7b 100644
--- a/packages/turf-destination/package.json
+++ b/packages/turf-destination/package.json
@@ -60,18 +60,18 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-difference/package.json b/packages/turf-difference/package.json
index 443a9b90a5..10724f16be 100644
--- a/packages/turf-difference/package.json
+++ b/packages/turf-difference/package.json
@@ -52,18 +52,18 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"polyclip-ts": "^0.16.8",
"tslib": "^2.8.1"
}
diff --git a/packages/turf-directional-mean/package.json b/packages/turf-directional-mean/package.json
index 862f47c354..65680396c4 100644
--- a/packages/turf-directional-mean/package.json
+++ b/packages/turf-directional-mean/package.json
@@ -52,15 +52,16 @@
"test:tape": "tsx test.ts"
},
"devDependencies": {
+ "@turf/truncate": "workspace:*",
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bearing": "workspace:*",
@@ -70,7 +71,7 @@
"@turf/invariant": "workspace:*",
"@turf/length": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-directional-mean/test.ts b/packages/turf-directional-mean/test.ts
index 2cff458654..9a9615d537 100644
--- a/packages/turf-directional-mean/test.ts
+++ b/packages/turf-directional-mean/test.ts
@@ -3,7 +3,8 @@ import path from "path";
import { fileURLToPath } from "url";
import { loadJsonFileSync } from "load-json-file";
import { writeJsonFileSync } from "write-json-file";
-import { directionalMean } from "./index.js";
+import { directionalMean, DirectionalMeanLine } from "./index.js";
+import { truncate } from "@turf/truncate";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
@@ -44,24 +45,28 @@ test("turf-directional-mean", (t) => {
planar: true,
segment: false,
});
+ trunc(utmResult1);
t.deepEqual(utmResult1, loadJsonFileSync(outUtmJsonPath1), "utm");
// utm segment
let utmResult2 = directionalMean(utmGeojson, {
planar: true,
segment: true,
});
+ trunc(utmResult2);
t.deepEqual(utmResult2, loadJsonFileSync(outUtmJsonPath2), "utm segment");
// gps
let gpsResult1 = directionalMean(gpsGeojson, {
planar: false,
});
+ trunc(gpsResult1);
t.deepEqual(gpsResult1, loadJsonFileSync(outGpsJsonPath1), "gps");
// gps segment
let gpsResult2 = directionalMean(gpsGeojson, {
planar: false,
segment: true,
});
+ trunc(gpsResult2);
t.deepEqual(gpsResult2, loadJsonFileSync(outGpsJsonPath2), "gps segment");
if (process.env.REGEN) {
@@ -73,3 +78,18 @@ test("turf-directional-mean", (t) => {
t.end();
});
+
+function trunc(d: DirectionalMeanLine) {
+ truncate(d, { mutate: true, precision: 8 });
+
+ const f = Math.pow(10, 9);
+ const props: (keyof typeof d.properties)[] = [
+ "cartesianAngle",
+ "bearingAngle",
+ "circularVariance",
+ ];
+
+ for (const k of props) {
+ d.properties[k] = Math.round(d.properties[k] * f) / f;
+ }
+}
diff --git a/packages/turf-directional-mean/test/out/bus_route_gps1.json b/packages/turf-directional-mean/test/out/bus_route_gps1.json
index 066a0bf087..8acdad7318 100644
--- a/packages/turf-directional-mean/test/out/bus_route_gps1.json
+++ b/packages/turf-directional-mean/test/out/bus_route_gps1.json
@@ -4,16 +4,16 @@
"averageLength": 24840.40218696326,
"averageX": 114.0481498585655,
"averageY": 22.6359322404607,
- "bearingAngle": 152.47623645814392,
- "cartesianAngle": -62.476236458143916,
- "circularVariance": 0.9560327266298506,
+ "bearingAngle": 152.476236458,
+ "cartesianAngle": -62.476236458,
+ "circularVariance": 0.956032727,
"countOfLines": 539
},
"geometry": {
"type": "LineString",
"coordinates": [
- [113.99218428178095, 22.734977926527673],
- [114.10403479999434, 22.536867163442935]
+ [113.99218428, 22.73497793],
+ [114.1040348, 22.53686716]
]
}
}
diff --git a/packages/turf-directional-mean/test/out/bus_route_gps2.json b/packages/turf-directional-mean/test/out/bus_route_gps2.json
index 5c9e1c5cb5..e79c7c9a90 100644
--- a/packages/turf-directional-mean/test/out/bus_route_gps2.json
+++ b/packages/turf-directional-mean/test/out/bus_route_gps2.json
@@ -4,16 +4,16 @@
"averageLength": 48.42971829319359,
"averageX": 114.06007706366387,
"averageY": 22.632852642469093,
- "bearingAngle": 126.93706469097845,
- "cartesianAngle": -36.937064690978445,
- "circularVariance": 0.9946441590238705,
+ "bearingAngle": 126.937064691,
+ "cartesianAngle": -36.937064691,
+ "circularVariance": 0.994644159,
"countOfLines": 276462
},
"geometry": {
"type": "LineString",
"coordinates": [
- [114.05988847846298, 22.632983507994844],
- [114.06026564850558, 22.632721776722867]
+ [114.05988848, 22.63298351],
+ [114.06026565, 22.63272178]
]
}
}
diff --git a/packages/turf-directional-mean/test/out/bus_route_utm1.json b/packages/turf-directional-mean/test/out/bus_route_utm1.json
index 3b4b4d3547..12e5314506 100644
--- a/packages/turf-directional-mean/test/out/bus_route_utm1.json
+++ b/packages/turf-directional-mean/test/out/bus_route_utm1.json
@@ -4,16 +4,16 @@
"averageLength": 24865.8833845794,
"averageX": 813350.6889736726,
"averageY": 2506449.133536962,
- "bearingAngle": 152.504692687896,
- "cartesianAngle": -62.504692687896025,
- "circularVariance": 0.9540978955813745,
+ "bearingAngle": 152.504692688,
+ "cartesianAngle": -62.504692688,
+ "circularVariance": 0.954097896,
"countOfLines": 538
},
"geometry": {
"type": "LineString",
"coordinates": [
- [807610.6986453704, 2517477.757664879],
- [819090.6793019747, 2495420.509409045]
+ [807610.69864537, 2517477.75766488],
+ [819090.67930197, 2495420.50940905]
]
}
}
diff --git a/packages/turf-directional-mean/test/out/bus_route_utm2.json b/packages/turf-directional-mean/test/out/bus_route_utm2.json
index ff51e888d4..1aba55bd36 100644
--- a/packages/turf-directional-mean/test/out/bus_route_utm2.json
+++ b/packages/turf-directional-mean/test/out/bus_route_utm2.json
@@ -4,16 +4,16 @@
"averageLength": 48.416925614400036,
"averageX": 814546.9056864326,
"averageY": 2506121.0821411484,
- "bearingAngle": 125.92398812851624,
- "cartesianAngle": -35.92398812851625,
- "circularVariance": 0.9946649189247785,
+ "bearingAngle": 125.923988129,
+ "cartesianAngle": -35.923988129,
+ "circularVariance": 0.994664919,
"countOfLines": 276462
},
"geometry": {
"type": "LineString",
"coordinates": [
- [814527.3017683452, 2506135.2855233904],
- [814566.50960452, 2506106.8787589064]
+ [814527.30176835, 2506135.28552339],
+ [814566.50960452, 2506106.87875891]
]
}
}
diff --git a/packages/turf-dissolve/package.json b/packages/turf-dissolve/package.json
index f10f2e5b46..1e53d6bfcf 100644
--- a/packages/turf-dissolve/package.json
+++ b/packages/turf-dissolve/package.json
@@ -57,17 +57,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/flatten": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"polyclip-ts": "^0.16.8",
"tslib": "^2.8.1"
}
diff --git a/packages/turf-distance-weight/package.json b/packages/turf-distance-weight/package.json
index 1fa077e8b5..31894b6343 100644
--- a/packages/turf-distance-weight/package.json
+++ b/packages/turf-distance-weight/package.json
@@ -57,17 +57,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/centroid": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-distance/package.json b/packages/turf-distance/package.json
index a6f7345c67..2e592438d7 100644
--- a/packages/turf-distance/package.json
+++ b/packages/turf-distance/package.json
@@ -56,15 +56,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-ellipse/package.json b/packages/turf-ellipse/package.json
index ffd2b31b2a..8dd0ae6e23 100644
--- a/packages/turf-ellipse/package.json
+++ b/packages/turf-ellipse/package.json
@@ -53,7 +53,7 @@
"test:tape": "tsx test.ts"
},
"devDependencies": {
- "@placemarkio/check-geojson": "^0.1.12",
+ "@placemarkio/check-geojson": "^0.1.14",
"@turf/area": "workspace:*",
"@turf/bbox-polygon": "workspace:*",
"@turf/circle": "workspace:*",
@@ -62,13 +62,13 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/destination": "workspace:*",
@@ -76,7 +76,7 @@
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/transform-rotate": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-envelope/package.json b/packages/turf-envelope/package.json
index 50b315e46a..d0f69d1ed4 100644
--- a/packages/turf-envelope/package.json
+++ b/packages/turf-envelope/package.json
@@ -57,15 +57,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/bbox": "workspace:*",
"@turf/bbox-polygon": "workspace:*",
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-explode/package.json b/packages/turf-explode/package.json
index dce2942b50..c711d5846a 100644
--- a/packages/turf-explode/package.json
+++ b/packages/turf-explode/package.json
@@ -56,15 +56,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-flatten/package.json b/packages/turf-flatten/package.json
index 40758ee832..6ad758e20c 100644
--- a/packages/turf-flatten/package.json
+++ b/packages/turf-flatten/package.json
@@ -62,15 +62,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-flip/package.json b/packages/turf-flip/package.json
index 11f94cfa60..c6cc4dd0ed 100644
--- a/packages/turf-flip/package.json
+++ b/packages/turf-flip/package.json
@@ -57,16 +57,16 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/clone": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-geojson-rbush/package.json b/packages/turf-geojson-rbush/package.json
index 326f2e87f8..0822a871d6 100644
--- a/packages/turf-geojson-rbush/package.json
+++ b/packages/turf-geojson-rbush/package.json
@@ -61,22 +61,22 @@
"@turf/bbox-polygon": "workspace:*",
"@turf/random": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/rbush": "^3.0.4",
+ "@types/rbush": "^4.0.0",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bbox": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
- "rbush": "^3.0.1",
+ "@types/geojson": "^7946.0.16",
+ "rbush": "^4.0.1",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-great-circle/package.json b/packages/turf-great-circle/package.json
index ddc1a7255a..1e39c61432 100644
--- a/packages/turf-great-circle/package.json
+++ b/packages/turf-great-circle/package.json
@@ -65,15 +65,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"arc": "^0.2.0",
"tslib": "^2.8.1"
}
diff --git a/packages/turf-helpers/package.json b/packages/turf-helpers/package.json
index 50af03430e..3a3e849770 100644
--- a/packages/turf-helpers/package.json
+++ b/packages/turf-helpers/package.json
@@ -62,12 +62,12 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-hex-grid/package.json b/packages/turf-hex-grid/package.json
index c0e1651067..d8eae73f2f 100644
--- a/packages/turf-hex-grid/package.json
+++ b/packages/turf-hex-grid/package.json
@@ -69,17 +69,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/intersect": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-interpolate/package.json b/packages/turf-interpolate/package.json
index 49dd24ff0c..47b4800959 100644
--- a/packages/turf-interpolate/package.json
+++ b/packages/turf-interpolate/package.json
@@ -61,10 +61,10 @@
"chromatism": "^3.0.0",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bbox": "workspace:*",
@@ -78,7 +78,7 @@
"@turf/point-grid": "workspace:*",
"@turf/square-grid": "workspace:*",
"@turf/triangle-grid": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-intersect/package.json b/packages/turf-intersect/package.json
index 86bee63ed7..b5168413d3 100644
--- a/packages/turf-intersect/package.json
+++ b/packages/turf-intersect/package.json
@@ -54,18 +54,18 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"polyclip-ts": "^0.16.8",
"tslib": "^2.8.1"
}
diff --git a/packages/turf-invariant/package.json b/packages/turf-invariant/package.json
index 636b9e5fbc..1a2536c70d 100644
--- a/packages/turf-invariant/package.json
+++ b/packages/turf-invariant/package.json
@@ -59,13 +59,13 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-isobands/package.json b/packages/turf-isobands/package.json
index b604c3fe26..8a459062f0 100644
--- a/packages/turf-isobands/package.json
+++ b/packages/turf-isobands/package.json
@@ -68,10 +68,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/area": "workspace:*",
@@ -81,7 +81,7 @@
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-isolines/package.json b/packages/turf-isolines/package.json
index 4c292165f1..b08915ab6f 100644
--- a/packages/turf-isolines/package.json
+++ b/packages/turf-isolines/package.json
@@ -68,17 +68,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bbox": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-kinks/package.json b/packages/turf-kinks/package.json
index 1eeeef9e0b..cc747a0709 100644
--- a/packages/turf-kinks/package.json
+++ b/packages/turf-kinks/package.json
@@ -57,14 +57,14 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-length/package.json b/packages/turf-length/package.json
index 3ecd7208ba..0d4c1045ce 100644
--- a/packages/turf-length/package.json
+++ b/packages/turf-length/package.json
@@ -62,16 +62,16 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-arc/package.json b/packages/turf-line-arc/package.json
index 62c8dba75a..9c72804229 100644
--- a/packages/turf-line-arc/package.json
+++ b/packages/turf-line-arc/package.json
@@ -56,16 +56,16 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/circle": "workspace:*",
"@turf/destination": "workspace:*",
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-chunk/package.json b/packages/turf-line-chunk/package.json
index be934e1298..6e8bedf318 100644
--- a/packages/turf-line-chunk/package.json
+++ b/packages/turf-line-chunk/package.json
@@ -65,17 +65,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/length": "workspace:*",
"@turf/line-slice-along": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-intersect/package.json b/packages/turf-line-intersect/package.json
index 56c0bd442c..7fbc2c2ac8 100644
--- a/packages/turf-line-intersect/package.json
+++ b/packages/turf-line-intersect/package.json
@@ -62,14 +62,14 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"sweepline-intersections": "^1.5.0",
"tslib": "^2.8.1"
}
diff --git a/packages/turf-line-offset/package.json b/packages/turf-line-offset/package.json
index 5f1699f264..491985f2b4 100644
--- a/packages/turf-line-offset/package.json
+++ b/packages/turf-line-offset/package.json
@@ -64,16 +64,16 @@
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
"tstyche": "^6.2.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-overlap/package.json b/packages/turf-line-overlap/package.json
index 6e2c898d2e..c18d8c09a3 100644
--- a/packages/turf-line-overlap/package.json
+++ b/packages/turf-line-overlap/package.json
@@ -61,10 +61,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/boolean-point-on-line": "workspace:*",
@@ -74,7 +74,7 @@
"@turf/line-segment": "workspace:*",
"@turf/meta": "workspace:*",
"@turf/nearest-point-on-line": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"fast-deep-equal": "^3.1.3",
"tslib": "^2.8.1"
}
diff --git a/packages/turf-line-segment/package.json b/packages/turf-line-segment/package.json
index 5927716caf..9746333bcb 100644
--- a/packages/turf-line-segment/package.json
+++ b/packages/turf-line-segment/package.json
@@ -55,16 +55,16 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-slice-along/package.json b/packages/turf-line-slice-along/package.json
index 7082641a51..f2d415ad9e 100644
--- a/packages/turf-line-slice-along/package.json
+++ b/packages/turf-line-slice-along/package.json
@@ -57,16 +57,16 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/bearing": "workspace:*",
"@turf/destination": "workspace:*",
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-slice/package.json b/packages/turf-line-slice/package.json
index 7122aedd73..82085d3128 100644
--- a/packages/turf-line-slice/package.json
+++ b/packages/turf-line-slice/package.json
@@ -60,16 +60,16 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/nearest-point-on-line": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-split/package.json b/packages/turf-line-split/package.json
index 2fed8d5e21..1256a62225 100644
--- a/packages/turf-line-split/package.json
+++ b/packages/turf-line-split/package.json
@@ -60,10 +60,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bbox": "workspace:*",
@@ -75,7 +75,7 @@
"@turf/meta": "workspace:*",
"@turf/nearest-point-on-line": "workspace:*",
"@turf/truncate": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-line-to-polygon/package.json b/packages/turf-line-to-polygon/package.json
index 2505d47789..193100d10f 100644
--- a/packages/turf-line-to-polygon/package.json
+++ b/packages/turf-line-to-polygon/package.json
@@ -61,17 +61,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bbox": "workspace:*",
"@turf/clone": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-mask/package.json b/packages/turf-mask/package.json
index e26596487c..97c3cc8acd 100644
--- a/packages/turf-mask/package.json
+++ b/packages/turf-mask/package.json
@@ -57,15 +57,15 @@
"load-json-file": "^7.0.1",
"mkdirp": "^3.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/clone": "workspace:*",
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"polyclip-ts": "^0.16.8",
"tslib": "^2.8.1"
}
diff --git a/packages/turf-meta/package.json b/packages/turf-meta/package.json
index 38a3d21a0f..a5055eb0e8 100644
--- a/packages/turf-meta/package.json
+++ b/packages/turf-meta/package.json
@@ -78,13 +78,13 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-midpoint/package.json b/packages/turf-midpoint/package.json
index 3e7aa6da95..37bcf799b5 100644
--- a/packages/turf-midpoint/package.json
+++ b/packages/turf-midpoint/package.json
@@ -56,16 +56,16 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/bearing": "workspace:*",
"@turf/destination": "workspace:*",
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-moran-index/package.json b/packages/turf-moran-index/package.json
index ddc2ce0986..9e1ce1cbc8 100644
--- a/packages/turf-moran-index/package.json
+++ b/packages/turf-moran-index/package.json
@@ -57,16 +57,16 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/distance-weight": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-nearest-neighbor-analysis/package.json b/packages/turf-nearest-neighbor-analysis/package.json
index 8a017463a0..de3ef34336 100644
--- a/packages/turf-nearest-neighbor-analysis/package.json
+++ b/packages/turf-nearest-neighbor-analysis/package.json
@@ -58,10 +58,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/area": "workspace:*",
@@ -72,7 +72,7 @@
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
"@turf/nearest-point": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"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 277d76fa13..f4e4449313 100644
--- a/packages/turf-nearest-point-on-line/package.json
+++ b/packages/turf-nearest-point-on-line/package.json
@@ -60,17 +60,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"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 2a5a235925..06843e3025 100644
--- a/packages/turf-nearest-point-to-line/package.json
+++ b/packages/turf-nearest-point-to-line/package.json
@@ -64,17 +64,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
"@turf/point-to-line-distance": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-nearest-point/index.ts b/packages/turf-nearest-point/index.ts
index 2d6882a061..e391b0f6b6 100644
--- a/packages/turf-nearest-point/index.ts
+++ b/packages/turf-nearest-point/index.ts
@@ -4,8 +4,9 @@ import { clone } from "@turf/clone";
import { distance } from "@turf/distance";
import { featureEach } from "@turf/meta";
-interface NearestPoint
- extends Feature {
+interface NearestPoint<
+ P extends GeoJsonProperties = GeoJsonProperties,
+> extends Feature {
properties: {
featureIndex: number;
distanceToPoint: number;
diff --git a/packages/turf-nearest-point/package.json b/packages/turf-nearest-point/package.json
index b7194422c5..db0b771d49 100644
--- a/packages/turf-nearest-point/package.json
+++ b/packages/turf-nearest-point/package.json
@@ -59,17 +59,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/clone": "workspace:*",
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-planepoint/package.json b/packages/turf-planepoint/package.json
index 95300d85c0..40b12fb8ff 100644
--- a/packages/turf-planepoint/package.json
+++ b/packages/turf-planepoint/package.json
@@ -57,14 +57,14 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-point-grid/package.json b/packages/turf-point-grid/package.json
index d7b0cdc0b3..593d9cfd51 100644
--- a/packages/turf-point-grid/package.json
+++ b/packages/turf-point-grid/package.json
@@ -63,17 +63,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/boolean-within": "workspace:*",
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-point-on-feature/package.json b/packages/turf-point-on-feature/package.json
index 9ce64435dc..df2e33a86f 100644
--- a/packages/turf-point-on-feature/package.json
+++ b/packages/turf-point-on-feature/package.json
@@ -59,10 +59,10 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "workspace:*",
@@ -70,7 +70,7 @@
"@turf/explode": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/nearest-point": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"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 409fbd8364..f1289d992c 100644
--- a/packages/turf-point-to-line-distance/package.json
+++ b/packages/turf-point-to-line-distance/package.json
@@ -60,10 +60,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bearing": "workspace:*",
@@ -75,7 +75,7 @@
"@turf/projection": "workspace:*",
"@turf/rhumb-bearing": "workspace:*",
"@turf/rhumb-distance": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"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 0a0a808cee..fc18bac6d6 100644
--- a/packages/turf-point-to-polygon-distance/package.json
+++ b/packages/turf-point-to-polygon-distance/package.json
@@ -60,10 +60,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "workspace:*",
@@ -72,7 +72,7 @@
"@turf/meta": "workspace:*",
"@turf/point-to-line-distance": "workspace:*",
"@turf/polygon-to-line": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-points-within-polygon/package.json b/packages/turf-points-within-polygon/package.json
index f6a69918df..0a8626a774 100644
--- a/packages/turf-points-within-polygon/package.json
+++ b/packages/turf-points-within-polygon/package.json
@@ -57,15 +57,15 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-polygon-smooth/package.json b/packages/turf-polygon-smooth/package.json
index 4b7bfa6d62..43863f59f3 100644
--- a/packages/turf-polygon-smooth/package.json
+++ b/packages/turf-polygon-smooth/package.json
@@ -57,18 +57,18 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-polygon-tangents/package.json b/packages/turf-polygon-tangents/package.json
index 67ee7b4426..735c9be236 100644
--- a/packages/turf-polygon-tangents/package.json
+++ b/packages/turf-polygon-tangents/package.json
@@ -62,10 +62,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bbox": "workspace:*",
@@ -74,7 +74,7 @@
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/nearest-point": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-polygon-to-line/package.json b/packages/turf-polygon-to-line/package.json
index 58458b93f2..3b27bce149 100644
--- a/packages/turf-polygon-to-line/package.json
+++ b/packages/turf-polygon-to-line/package.json
@@ -57,15 +57,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-polygonize/package.json b/packages/turf-polygonize/package.json
index c9ac7204b2..4d2f883410 100644
--- a/packages/turf-polygonize/package.json
+++ b/packages/turf-polygonize/package.json
@@ -61,10 +61,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "workspace:*",
@@ -72,7 +72,7 @@
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-projection/package.json b/packages/turf-projection/package.json
index fb614a8db2..c2e295ef0e 100644
--- a/packages/turf-projection/package.json
+++ b/packages/turf-projection/package.json
@@ -69,18 +69,18 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
- "proj4": "^2.9.2",
+ "proj4": "^2.20.2",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/clone": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-quadrat-analysis/package.json b/packages/turf-quadrat-analysis/package.json
index 44f7238f96..0148543c5c 100644
--- a/packages/turf-quadrat-analysis/package.json
+++ b/packages/turf-quadrat-analysis/package.json
@@ -58,10 +58,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/area": "workspace:*",
@@ -73,7 +73,7 @@
"@turf/point-grid": "workspace:*",
"@turf/random": "workspace:*",
"@turf/square-grid": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-random/package.json b/packages/turf-random/package.json
index e76d358039..52e05a13fe 100644
--- a/packages/turf-random/package.json
+++ b/packages/turf-random/package.json
@@ -52,15 +52,15 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-rectangle-grid/package.json b/packages/turf-rectangle-grid/package.json
index b68c97318c..924e050a51 100644
--- a/packages/turf-rectangle-grid/package.json
+++ b/packages/turf-rectangle-grid/package.json
@@ -62,16 +62,16 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/boolean-intersects": "workspace:*",
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-rewind/package.json b/packages/turf-rewind/package.json
index 9c795ce970..95c6e2170c 100644
--- a/packages/turf-rewind/package.json
+++ b/packages/turf-rewind/package.json
@@ -63,10 +63,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/boolean-clockwise": "workspace:*",
@@ -74,7 +74,7 @@
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-rhumb-bearing/package.json b/packages/turf-rhumb-bearing/package.json
index 4739cb3521..26fb1bb8d4 100644
--- a/packages/turf-rhumb-bearing/package.json
+++ b/packages/turf-rhumb-bearing/package.json
@@ -62,15 +62,15 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-rhumb-destination/package.json b/packages/turf-rhumb-destination/package.json
index 5fbc65659d..453297fc66 100644
--- a/packages/turf-rhumb-destination/package.json
+++ b/packages/turf-rhumb-destination/package.json
@@ -67,15 +67,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-rhumb-distance/package.json b/packages/turf-rhumb-distance/package.json
index beab3e34a4..672aaa05df 100644
--- a/packages/turf-rhumb-distance/package.json
+++ b/packages/turf-rhumb-distance/package.json
@@ -65,15 +65,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-sample/package.json b/packages/turf-sample/package.json
index ee534b9a0e..439552ff35 100644
--- a/packages/turf-sample/package.json
+++ b/packages/turf-sample/package.json
@@ -55,13 +55,13 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-sector/package.json b/packages/turf-sector/package.json
index 466d5d352e..f2e63f74b5 100644
--- a/packages/turf-sector/package.json
+++ b/packages/turf-sector/package.json
@@ -56,10 +56,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/circle": "workspace:*",
@@ -67,7 +67,7 @@
"@turf/invariant": "workspace:*",
"@turf/line-arc": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-shortest-path/package.json b/packages/turf-shortest-path/package.json
index 1c379d37e7..87d4fdbd3a 100644
--- a/packages/turf-shortest-path/package.json
+++ b/packages/turf-shortest-path/package.json
@@ -62,10 +62,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bbox": "workspace:*",
@@ -77,7 +77,7 @@
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
"@turf/transform-scale": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-simplify/package.json b/packages/turf-simplify/package.json
index 30ad35c3dc..3b2d785882 100644
--- a/packages/turf-simplify/package.json
+++ b/packages/turf-simplify/package.json
@@ -64,17 +64,17 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/clean-coords": "workspace:*",
"@turf/clone": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-square-grid/package.json b/packages/turf-square-grid/package.json
index 676d534bd3..853927a588 100644
--- a/packages/turf-square-grid/package.json
+++ b/packages/turf-square-grid/package.json
@@ -58,15 +58,15 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/rectangle-grid": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-square/package.json b/packages/turf-square/package.json
index 9e1291d14e..686d9f08f3 100644
--- a/packages/turf-square/package.json
+++ b/packages/turf-square/package.json
@@ -55,14 +55,14 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-standard-deviational-ellipse/package.json b/packages/turf-standard-deviational-ellipse/package.json
index c38a7087dc..8fdeeb565c 100644
--- a/packages/turf-standard-deviational-ellipse/package.json
+++ b/packages/turf-standard-deviational-ellipse/package.json
@@ -62,10 +62,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/center-mean": "workspace:*",
@@ -74,7 +74,7 @@
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
"@turf/points-within-polygon": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-standard-deviational-ellipse/test.ts b/packages/turf-standard-deviational-ellipse/test.ts
index c0073590b3..912dc35b54 100644
--- a/packages/turf-standard-deviational-ellipse/test.ts
+++ b/packages/turf-standard-deviational-ellipse/test.ts
@@ -7,6 +7,7 @@ import { loadJsonFileSync } from "load-json-file";
import { writeJsonFileSync } from "write-json-file";
import { featureCollection } from "@turf/helpers";
import { standardDeviationalEllipse } from "./index.js";
+import { truncate } from "@turf/truncate";
const __dirname = path.dirname(fileURLToPath(import.meta.url));
@@ -28,6 +29,10 @@ test("turf-standard-deviational-ellipse", (t) => {
const results = featureCollection([
colorize(standardDeviationalEllipse(geojson, options)),
]);
+
+ // MacOS and CI (Ubuntu) seem to disagree on the result
+ truncate(results, { mutate: true, precision: 8 });
+
if (esriEllipse)
results.features.unshift(colorize(esriEllipse, "#A00", "#A00", 0.5));
diff --git a/packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json b/packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json
index 831bfbe7e5..dd92ac7b82 100644
--- a/packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json
+++ b/packages/turf-standard-deviational-ellipse/test/out/mta-stations-unweighted.json
@@ -109,71 +109,71 @@
"type": "Polygon",
"coordinates": [
[
- [-74.03359324546851, 40.75132103218129],
- [-74.02980293400115, 40.76012863103802],
- [-74.02528552411586, 40.76887197102854],
- [-74.0200350928131, 40.777482909918255],
- [-74.01405082863232, 40.7858879763643],
- [-74.00733773756559, 40.79400823663968],
- [-73.99990742755185, 40.801759182943094],
- [-73.99177898248347, 40.80905064919711],
- [-73.98297993893047, 40.81578676164539],
- [-73.97354738172352, 40.821865933378426],
- [-73.96352917838684, 40.82718091429612],
- [-73.9529853775278, 40.8316189111703],
- [-73.94198980319563, 40.835061796717234],
- [-73.93063188669697, 40.8373864324002],
- [-73.919018790595, 40.8384651377768],
- [-73.90727789847813, 40.83816635070532],
- [-73.89555977154562, 40.83635553942771],
- [-73.88443014504873, 40.83304344443191],
- [-73.87437098343747, 40.82845426835252],
- [-73.86541133661937, 40.82276283715078],
- [-73.85756288120297, 40.8161319079139],
- [-73.8508231008489, 40.80871263328326],
- [-73.84517788429955, 40.80064504272652],
- [-73.8406036708805, 40.79205853130578],
- [-73.83706923820884, 40.78307234930186],
- [-73.83453720269986, 40.77379608793092],
- [-73.83296528646396, 40.76433015771664],
- [-73.83230739197033, 40.75476625704031],
- [-73.83251451691409, 40.74518782909243],
- [-73.8335355350701, 40.73567050597184],
- [-73.83531786388474, 40.72628253907192],
- [-73.83780803569908, 40.71708521519108],
- [-73.84095218649749, 40.70813325803411],
- [-73.84476451396527, 40.699331854062216],
- [-73.84930090197322, 40.690595566053084],
- [-73.85456655089425, 40.68199237410667],
- [-73.86056159765634, 40.67359555113398],
- [-73.86728043775769, 40.66548379754552],
- [-73.87471097122668, 40.657741355762894],
- [-73.88283376112537, 40.650458098876975],
- [-73.89162109071555, 40.64372958637409],
- [-73.90103590221698, 40.63765707803131],
- [-73.91103059593168, 40.63234749469166],
- [-73.92154566302204, 40.62791331145134],
- [-73.93250811787672, 40.624472364501344],
- [-73.94382968598299, 40.6221475469883],
- [-73.95540468933167, 40.62106636106392],
- [-73.9671075517279, 40.62136028164354],
- [-73.97878981795107, 40.62316387047818],
- [-73.98988907748351, 40.626466916318215],
- [-73.99992569571032, 40.63104607657647],
- [-74.00887104266555, 40.63672711589932],
- [-74.01671341138922, 40.64334780103107],
- [-74.02345492440752, 40.65075742560566],
- [-74.02910901786136, 40.658816323886754],
- [-74.0336983714282, 40.667395381445],
- [-74.03725318812609, 40.67637554829524],
- [-74.03980975286483, 40.68564735834254],
- [-74.04140921605757, 40.69511045782774],
- [-74.04209656113622, 40.704673144647536],
- [-74.04191972396667, 40.71425191984239],
- [-74.0409288389554, 40.723771052124086],
- [-74.03917559175294, 40.73316215600696],
- [-74.03671266236184, 40.742363783879206],
- [-74.03359324546851, 40.75132103218129]
+ [-74.03359325, 40.75132103],
+ [-74.02980293, 40.76012863],
+ [-74.02528552, 40.76887197],
+ [-74.02003509, 40.77748291],
+ [-74.01405083, 40.78588798],
+ [-74.00733774, 40.79400824],
+ [-73.99990743, 40.80175918],
+ [-73.99177898, 40.80905065],
+ [-73.98297994, 40.81578676],
+ [-73.97354738, 40.82186593],
+ [-73.96352918, 40.82718091],
+ [-73.95298538, 40.83161891],
+ [-73.9419898, 40.8350618],
+ [-73.93063189, 40.83738643],
+ [-73.91901879, 40.83846514],
+ [-73.9072779, 40.83816635],
+ [-73.89555977, 40.83635554],
+ [-73.88443015, 40.83304344],
+ [-73.87437098, 40.82845427],
+ [-73.86541134, 40.82276284],
+ [-73.85756288, 40.81613191],
+ [-73.8508231, 40.80871263],
+ [-73.84517788, 40.80064504],
+ [-73.84060367, 40.79205853],
+ [-73.83706924, 40.78307235],
+ [-73.8345372, 40.77379609],
+ [-73.83296529, 40.76433016],
+ [-73.83230739, 40.75476626],
+ [-73.83251452, 40.74518783],
+ [-73.83353554, 40.73567051],
+ [-73.83531786, 40.72628254],
+ [-73.83780804, 40.71708522],
+ [-73.84095219, 40.70813326],
+ [-73.84476451, 40.69933185],
+ [-73.8493009, 40.69059557],
+ [-73.85456655, 40.68199237],
+ [-73.8605616, 40.67359555],
+ [-73.86728044, 40.6654838],
+ [-73.87471097, 40.65774136],
+ [-73.88283376, 40.6504581],
+ [-73.89162109, 40.64372959],
+ [-73.9010359, 40.63765708],
+ [-73.9110306, 40.63234749],
+ [-73.92154566, 40.62791331],
+ [-73.93250812, 40.62447236],
+ [-73.94382969, 40.62214755],
+ [-73.95540469, 40.62106636],
+ [-73.96710755, 40.62136028],
+ [-73.97878982, 40.62316387],
+ [-73.98988908, 40.62646692],
+ [-73.9999257, 40.63104608],
+ [-74.00887104, 40.63672712],
+ [-74.01671341, 40.6433478],
+ [-74.02345492, 40.65075743],
+ [-74.02910902, 40.65881632],
+ [-74.03369837, 40.66739538],
+ [-74.03725319, 40.67637555],
+ [-74.03980975, 40.68564736],
+ [-74.04140922, 40.69511046],
+ [-74.04209656, 40.70467314],
+ [-74.04191972, 40.71425192],
+ [-74.04092884, 40.72377105],
+ [-74.03917559, 40.73316216],
+ [-74.03671266, 40.74236378],
+ [-74.03359325, 40.75132103]
]
]
}
diff --git a/packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json b/packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json
index b9af10aef2..be1aa175f4 100644
--- a/packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json
+++ b/packages/turf-standard-deviational-ellipse/test/out/mta-stations-weighted.json
@@ -109,71 +109,71 @@
"type": "Polygon",
"coordinates": [
[
- [-74.02452801068807, 40.775547173294186],
- [-74.01893422646326, 40.78259752726428],
- [-74.01268414445943, 40.78943811380472],
- [-74.00579638065156, 40.796006107373],
- [-73.99829617235616, 40.80223594694747],
- [-73.99021592245862, 40.80805957219015],
- [-73.98159576262077, 40.8134067167014],
- [-73.9724841338293, 40.81820526653445],
- [-73.9629383821334, 40.82238169342446],
- [-73.95302536680158, 40.8258615737414],
- [-73.94282207737366, 40.82857020607593],
- [-73.93241625516164, 40.83043334270903],
- [-73.92190701361201, 40.831378053136305],
- [-73.91140545051374, 40.83133374149704],
- [-73.90103524323057, 40.83023334445488],
- [-73.89093321581471, 40.82801474214651],
- [-73.88124986383536, 40.82462242277314],
- [-73.87237279234334, 40.82014233496311],
- [-73.86460097509195, 40.81477985802708],
- [-73.85795003463295, 40.80866105611467],
- [-73.85242093101229, 40.80190655870187],
- [-73.84800215245467, 40.79463104771375],
- [-73.84467163625422, 40.786942903004004],
- [-73.84239845801515, 40.77894397546494],
- [-73.84114432030273, 40.77072946332155],
- [-73.84086486634928, 40.76238787196388],
- [-73.84151084025547, 40.75400104139124],
- [-73.8430291118138, 40.7456442282593],
- [-73.84536358143308, 40.73738623183474],
- [-73.84845597849838, 40.72928955501612],
- [-73.85224656474314, 40.72141059307866],
- [-73.85667475275184, 40.71379984402171],
- [-73.86167964848912, 40.70650213540208],
- [-73.86728368644258, 40.69945937985531],
- [-73.87354025396233, 40.69262664020811],
- [-73.88043036281451, 40.68606650975553],
- [-73.88792850688942, 40.67984429861887],
- [-73.89600213853876, 40.67402780376825],
- [-73.90461112478266, 40.668687023307626],
- [-73.91370718412121, 40.66389380684423],
- [-73.92323330506247, 40.659721432427446],
- [-73.93312314796478, 40.656244098923295],
- [-73.94330043241949, 40.653536320714245],
- [-73.953678313213, 40.65167220918066],
- [-73.96415874896458, 40.65072462239258],
- [-73.9746318689202, 40.650764160635475],
- [-73.98497534519998, 40.651857980554134],
- [-73.99505378020882, 40.65406839446653],
- [-74.00471812214236, 40.657451213261425],
- [-74.01358239966163, 40.66192116955677],
- [-74.02134836223475, 40.66727365770246],
- [-74.02800018349505, 40.67338307986641],
- [-74.03353641529728, 40.68012919335254],
- [-74.03796786068695, 40.687397618451094],
- [-74.04131571419732, 40.695080192396205],
- [-74.04360992940073, 40.70307519921561],
- [-74.04488778136994, 40.7112874990724],
- [-74.04519259763617, 40.71962857599848],
- [-74.04457263584214, 40.72801651930139],
- [-74.04308008991914, 40.73637595110584],
- [-74.04077020950417, 40.744637910270065],
- [-74.03770051963454, 40.75273970114755],
- [-74.03393012963858, 40.76062471424352],
- [-74.02951912168086, 40.76824222466161],
- [-74.02452801068807, 40.775547173294186]
+ [-74.02452801, 40.77554717],
+ [-74.01893423, 40.78259753],
+ [-74.01268414, 40.78943811],
+ [-74.00579638, 40.79600611],
+ [-73.99829617, 40.80223595],
+ [-73.99021592, 40.80805957],
+ [-73.98159576, 40.81340672],
+ [-73.97248413, 40.81820527],
+ [-73.96293838, 40.82238169],
+ [-73.95302537, 40.82586157],
+ [-73.94282208, 40.82857021],
+ [-73.93241626, 40.83043334],
+ [-73.92190701, 40.83137805],
+ [-73.91140545, 40.83133374],
+ [-73.90103524, 40.83023334],
+ [-73.89093322, 40.82801474],
+ [-73.88124986, 40.82462242],
+ [-73.87237279, 40.82014233],
+ [-73.86460098, 40.81477986],
+ [-73.85795003, 40.80866106],
+ [-73.85242093, 40.80190656],
+ [-73.84800215, 40.79463105],
+ [-73.84467164, 40.7869429],
+ [-73.84239846, 40.77894398],
+ [-73.84114432, 40.77072946],
+ [-73.84086487, 40.76238787],
+ [-73.84151084, 40.75400104],
+ [-73.84302911, 40.74564423],
+ [-73.84536358, 40.73738623],
+ [-73.84845598, 40.72928956],
+ [-73.85224656, 40.72141059],
+ [-73.85667475, 40.71379984],
+ [-73.86167965, 40.70650214],
+ [-73.86728369, 40.69945938],
+ [-73.87354025, 40.69262664],
+ [-73.88043036, 40.68606651],
+ [-73.88792851, 40.6798443],
+ [-73.89600214, 40.6740278],
+ [-73.90461112, 40.66868702],
+ [-73.91370718, 40.66389381],
+ [-73.92323331, 40.65972143],
+ [-73.93312315, 40.6562441],
+ [-73.94330043, 40.65353632],
+ [-73.95367831, 40.65167221],
+ [-73.96415875, 40.65072462],
+ [-73.97463187, 40.65076416],
+ [-73.98497535, 40.65185798],
+ [-73.99505378, 40.65406839],
+ [-74.00471812, 40.65745121],
+ [-74.0135824, 40.66192117],
+ [-74.02134836, 40.66727366],
+ [-74.02800018, 40.67338308],
+ [-74.03353642, 40.68012919],
+ [-74.03796786, 40.68739762],
+ [-74.04131571, 40.69508019],
+ [-74.04360993, 40.7030752],
+ [-74.04488778, 40.7112875],
+ [-74.0451926, 40.71962858],
+ [-74.04457264, 40.72801652],
+ [-74.04308009, 40.73637595],
+ [-74.04077021, 40.74463791],
+ [-74.03770052, 40.7527397],
+ [-74.03393013, 40.76062471],
+ [-74.02951912, 40.76824222],
+ [-74.02452801, 40.77554717]
]
]
}
diff --git a/packages/turf-tag/package.json b/packages/turf-tag/package.json
index 6bbdf54976..9259058cd3 100644
--- a/packages/turf-tag/package.json
+++ b/packages/turf-tag/package.json
@@ -60,16 +60,16 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/boolean-point-in-polygon": "workspace:*",
"@turf/clone": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-tesselate/package.json b/packages/turf-tesselate/package.json
index a0babae3a2..b096db78ac 100644
--- a/packages/turf-tesselate/package.json
+++ b/packages/turf-tesselate/package.json
@@ -64,14 +64,14 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
- "earcut": "^2.2.4",
+ "@types/geojson": "^7946.0.16",
+ "earcut": "^3.0.2",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-tin/package.json b/packages/turf-tin/package.json
index 91e29f6087..55880563a7 100644
--- a/packages/turf-tin/package.json
+++ b/packages/turf-tin/package.json
@@ -55,13 +55,13 @@
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/helpers": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-transform-rotate/package.json b/packages/turf-transform-rotate/package.json
index 29f47b7a2b..1810d8d5af 100644
--- a/packages/turf-transform-rotate/package.json
+++ b/packages/turf-transform-rotate/package.json
@@ -62,10 +62,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/centroid": "workspace:*",
@@ -76,7 +76,7 @@
"@turf/rhumb-bearing": "workspace:*",
"@turf/rhumb-destination": "workspace:*",
"@turf/rhumb-distance": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-transform-scale/package.json b/packages/turf-transform-scale/package.json
index 453e003a5d..61f8290b32 100644
--- a/packages/turf-transform-scale/package.json
+++ b/packages/turf-transform-scale/package.json
@@ -68,10 +68,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/bbox": "workspace:*",
@@ -84,7 +84,7 @@
"@turf/rhumb-bearing": "workspace:*",
"@turf/rhumb-destination": "workspace:*",
"@turf/rhumb-distance": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-transform-translate/package.json b/packages/turf-transform-translate/package.json
index 906f1faa04..1adf23d628 100644
--- a/packages/turf-transform-translate/package.json
+++ b/packages/turf-transform-translate/package.json
@@ -64,10 +64,10 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/clone": "workspace:*",
@@ -75,7 +75,7 @@
"@turf/invariant": "workspace:*",
"@turf/meta": "workspace:*",
"@turf/rhumb-destination": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-triangle-grid/package.json b/packages/turf-triangle-grid/package.json
index 00a35b6037..aad862f73a 100644
--- a/packages/turf-triangle-grid/package.json
+++ b/packages/turf-triangle-grid/package.json
@@ -61,16 +61,16 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/distance": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/intersect": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-truncate/package.json b/packages/turf-truncate/package.json
index 49e6e6cc09..0a4b2b3dfd 100644
--- a/packages/turf-truncate/package.json
+++ b/packages/turf-truncate/package.json
@@ -60,15 +60,15 @@
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-union/package.json b/packages/turf-union/package.json
index 43ed71ad31..ec750e044c 100644
--- a/packages/turf-union/package.json
+++ b/packages/turf-union/package.json
@@ -53,18 +53,18 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"polyclip-ts": "^0.16.8",
"tslib": "^2.8.1"
}
diff --git a/packages/turf-unkink-polygon/package.json b/packages/turf-unkink-polygon/package.json
index fe9df1ea20..cc0e360e4f 100644
--- a/packages/turf-unkink-polygon/package.json
+++ b/packages/turf-unkink-polygon/package.json
@@ -55,23 +55,23 @@
"devDependencies": {
"@turf/kinks": "workspace:*",
"@types/benchmark": "^2.1.5",
- "@types/rbush": "^3.0.4",
+ "@types/rbush": "^4.0.0",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/area": "workspace:*",
"@turf/boolean-point-in-polygon": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/meta": "workspace:*",
- "@types/geojson": "^7946.0.10",
- "rbush": "^3.0.1",
+ "@types/geojson": "^7946.0.16",
+ "rbush": "^4.0.1",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf-voronoi/package.json b/packages/turf-voronoi/package.json
index dafce5f4a1..82c9e4a366 100644
--- a/packages/turf-voronoi/package.json
+++ b/packages/turf-voronoi/package.json
@@ -61,21 +61,21 @@
"@types/benchmark": "^2.1.5",
"@types/tape": "^5.8.1",
"benchmark": "^2.1.4",
- "glob": "^11.1.0",
+ "glob": "^13.0.6",
"load-json-file": "^7.0.1",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3",
- "write-json-file": "^6.0.0"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3",
+ "write-json-file": "^7.0.0"
},
"dependencies": {
"@turf/clone": "workspace:*",
"@turf/helpers": "workspace:*",
"@turf/invariant": "workspace:*",
"@types/d3-voronoi": "^1.1.12",
- "@types/geojson": "^7946.0.10",
- "d3-voronoi": "1.1.2",
+ "@types/geojson": "^7946.0.16",
+ "d3-voronoi": "1.1.4",
"tslib": "^2.8.1"
}
}
diff --git a/packages/turf/package.json b/packages/turf/package.json
index aba562bd14..a0cecb6ddc 100644
--- a/packages/turf/package.json
+++ b/packages/turf/package.json
@@ -74,22 +74,22 @@
"test": "echo '@turf/turf tests run in the last-checks step'"
},
"devDependencies": {
- "@babel/core": "^7.26.10",
- "@babel/preset-env": "^7.26.9",
- "@rollup/plugin-babel": "^6.0.4",
- "@rollup/plugin-commonjs": "^28.0.3",
- "@rollup/plugin-node-resolve": "^16.0.1",
+ "@babel/core": "^7.29.0",
+ "@babel/preset-env": "^7.29.0",
+ "@rollup/plugin-babel": "^6.1.0",
+ "@rollup/plugin-commonjs": "^29.0.0",
+ "@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/tape": "^5.8.1",
- "camelcase": "^8.0.0",
+ "camelcase": "^9.0.0",
"documentation": "^14.0.3",
- "glob": "^11.1.0",
- "rollup": "^4.40.1",
+ "glob": "^13.0.6",
+ "rollup": "^4.59.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"tape": "^5.9.0",
- "tsup": "^8.4.0",
- "tsx": "^4.19.4",
- "typescript": "^5.8.3"
+ "tsup": "^8.5.1",
+ "tsx": "^4.21.0",
+ "typescript": "^5.9.3"
},
"dependencies": {
"@turf/along": "workspace:*",
@@ -205,7 +205,7 @@
"@turf/union": "workspace:*",
"@turf/unkink-polygon": "workspace:*",
"@turf/voronoi": "workspace:*",
- "@types/geojson": "^7946.0.10",
+ "@types/geojson": "^7946.0.16",
"@types/kdbush": "^3.0.5",
"tslib": "^2.8.1"
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 1f2f224b29..42b6e19253 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,101 +9,101 @@ importers:
.:
devDependencies:
'@eslint/eslintrc':
- specifier: ^3.3.1
- version: 3.3.1
+ specifier: ^3.3.4
+ version: 3.3.4
'@eslint/js':
- specifier: ^9.31.0
- version: 9.31.0
+ specifier: ^10.0.1
+ version: 10.0.1(eslint@10.0.2)
'@monorepolint/cli':
- specifier: 0.5.0
- version: 0.5.0
+ specifier: 0.6.0-alpha.5
+ version: 0.6.0-alpha.5
'@monorepolint/config':
- specifier: 0.5.0
- version: 0.5.0
+ specifier: 0.6.0-alpha.6
+ version: 0.6.0-alpha.6
'@monorepolint/core':
- specifier: 0.5.0
- version: 0.5.0
+ specifier: 0.6.0-alpha.6
+ version: 0.6.0-alpha.6
'@monorepolint/rules':
- specifier: 0.5.0
- version: 0.5.0
+ specifier: 0.6.0-alpha.6
+ version: 0.6.0-alpha.6
'@types/node':
- specifier: 22.15.3
- version: 22.15.3
+ specifier: 25.3.2
+ version: 25.3.2
acorn:
- specifier: ^8.14.1
- version: 8.15.0
+ specifier: ^8.16.0
+ version: 8.16.0
camelcase:
- specifier: ^8.0.0
- version: 8.0.0
+ specifier: ^9.0.0
+ version: 9.0.0
d3-queue:
- specifier: '*'
+ specifier: ^3.0.7
version: 3.0.7
decamelize:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^6.0.1
+ version: 6.0.1
dependency-tree:
- specifier: ^11.1.1
- version: 11.1.1
+ specifier: ^11.3.0
+ version: 11.3.0
documentation:
specifier: ^14.0.3
version: 14.0.3
es-check:
- specifier: ^9.0.0
- version: 9.0.0
+ specifier: ^9.6.1
+ version: 9.6.1
eslint:
- specifier: ^9.31.0
- version: 9.31.0
+ specifier: ^10.0.2
+ version: 10.0.2
eslint-config-prettier:
specifier: ^10.1.8
- version: 10.1.8(eslint@9.31.0)
+ version: 10.1.8(eslint@10.0.2)
eslint-plugin-prettier:
- specifier: ^5.5.3
- version: 5.5.3(eslint-config-prettier@10.1.8(eslint@9.31.0))(eslint@9.31.0)(prettier@3.5.3)
+ specifier: ^5.5.5
+ version: 5.5.5(eslint-config-prettier@10.1.8(eslint@10.0.2))(eslint@10.0.2)(prettier@3.8.1)
esm:
specifier: ^3.2.25
version: 3.2.25
fs-extra:
- specifier: ^11.3.0
- version: 11.3.0
+ specifier: ^11.3.3
+ version: 11.3.3
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
globals:
- specifier: ^16.0.0
- version: 16.0.0
+ specifier: ^17.3.0
+ version: 17.3.0
husky:
specifier: ^9.1.7
version: 9.1.7
lerna:
- specifier: ^9.0.3
- version: 9.0.3(@types/node@22.15.3)
+ specifier: ^9.0.4
+ version: 9.0.4(@types/node@25.3.2)
lint-staged:
- specifier: ^15.5.1
- version: 15.5.1
+ specifier: ^16.2.7
+ version: 16.2.7
load-json-file:
specifier: ^7.0.1
version: 7.0.1
meow:
- specifier: ^13.2.0
- version: 13.2.0
+ specifier: ^14.1.0
+ version: 14.1.0
prettier:
- specifier: ^3.5.3
- version: 3.5.3
+ specifier: ^3.8.1
+ version: 3.8.1
progress:
specifier: ^2.0.3
version: 2.0.3
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
typescript-eslint:
- specifier: ^8.38.0
- version: 8.38.0(eslint@9.31.0)(typescript@5.8.3)
+ specifier: ^8.56.1
+ version: 8.56.1(eslint@10.0.2)(typescript@5.9.3)
yamljs:
specifier: ^0.3.0
version: 0.3.0
@@ -450,8 +450,8 @@ importers:
specifier: workspace:*
version: link:../turf-voronoi
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
'@types/kdbush':
specifier: ^3.0.5
version: 3.0.5
@@ -460,53 +460,53 @@ importers:
version: 2.8.1
devDependencies:
'@babel/core':
- specifier: ^7.26.10
- version: 7.26.10
+ specifier: ^7.29.0
+ version: 7.29.0
'@babel/preset-env':
- specifier: ^7.26.9
- version: 7.26.9(@babel/core@7.26.10)
+ specifier: ^7.29.0
+ version: 7.29.0(@babel/core@7.29.0)
'@rollup/plugin-babel':
- specifier: ^6.0.4
- version: 6.0.4(@babel/core@7.26.10)(rollup@4.40.1)
+ specifier: ^6.1.0
+ version: 6.1.0(@babel/core@7.29.0)(rollup@4.59.0)
'@rollup/plugin-commonjs':
- specifier: ^28.0.3
- version: 28.0.3(rollup@4.40.1)
+ specifier: ^29.0.0
+ version: 29.0.0(rollup@4.59.0)
'@rollup/plugin-node-resolve':
- specifier: ^16.0.1
- version: 16.0.1(rollup@4.40.1)
+ specifier: ^16.0.3
+ version: 16.0.3(rollup@4.59.0)
'@rollup/plugin-terser':
specifier: ^0.4.4
- version: 0.4.4(rollup@4.40.1)
+ version: 0.4.4(rollup@4.59.0)
'@types/tape':
specifier: ^5.8.1
version: 5.8.1
camelcase:
- specifier: ^8.0.0
- version: 8.0.0
+ specifier: ^9.0.0
+ version: 9.0.0
documentation:
specifier: ^14.0.3
version: 14.0.3
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
rollup:
- specifier: ^4.40.1
- version: 4.40.1
+ specifier: ^4.59.0
+ version: 4.59.0
rollup-plugin-polyfill-node:
specifier: ^0.13.0
- version: 0.13.0(rollup@4.40.1)
+ version: 0.13.0(rollup@4.59.0)
tape:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-along:
dependencies:
@@ -526,8 +526,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -548,14 +548,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-angle:
dependencies:
@@ -572,8 +572,8 @@ importers:
specifier: workspace:*
version: link:../turf-rhumb-bearing
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -597,8 +597,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -606,17 +606,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-area:
dependencies:
@@ -627,8 +627,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -649,17 +649,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-bbox:
dependencies:
@@ -670,8 +670,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -689,14 +689,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-bbox-clip:
dependencies:
@@ -707,8 +707,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -732,17 +732,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-bbox-polygon:
dependencies:
@@ -750,8 +750,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -769,14 +769,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-bearing:
dependencies:
@@ -787,8 +787,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -809,17 +809,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-bezier-spline:
dependencies:
@@ -830,8 +830,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -852,17 +852,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-boolean-clockwise:
dependencies:
@@ -873,8 +873,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -889,8 +889,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -898,14 +898,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-boolean-concave:
dependencies:
@@ -916,8 +916,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -932,8 +932,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -941,14 +941,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-boolean-contains:
dependencies:
@@ -971,8 +971,8 @@ importers:
specifier: workspace:*
version: link:../turf-line-split
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -987,14 +987,14 @@ importers:
specifier: ^2.1.4
version: 2.1.4
boolean-jsts:
- specifier: '*'
+ specifier: ^0.0.1
version: 0.0.1
boolean-shapely:
- specifier: '*'
+ specifier: ^0.1.2
version: 0.1.2
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -1002,14 +1002,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-boolean-crosses:
dependencies:
@@ -1032,8 +1032,8 @@ importers:
specifier: workspace:*
version: link:../turf-polygon-to-line
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1048,11 +1048,11 @@ importers:
specifier: ^2.1.4
version: 2.1.4
boolean-shapely:
- specifier: '*'
+ specifier: ^0.1.2
version: 0.1.2
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -1060,14 +1060,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-boolean-disjoint:
dependencies:
@@ -1087,8 +1087,8 @@ importers:
specifier: workspace:*
version: link:../turf-polygon-to-line
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1103,7 +1103,7 @@ importers:
specifier: ^2.1.4
version: 2.1.4
boolean-shapely:
- specifier: '*'
+ specifier: ^0.1.2
version: 0.1.2
load-json-file:
specifier: ^7.0.1
@@ -1112,14 +1112,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-boolean-equal:
dependencies:
@@ -1133,8 +1133,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
geojson-equality-ts:
specifier: ^1.0.2
version: 1.0.2
@@ -1152,11 +1152,11 @@ importers:
specifier: ^2.1.4
version: 2.1.4
boolean-shapely:
- specifier: '*'
+ specifier: ^0.1.2
version: 0.1.2
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -1164,14 +1164,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-boolean-intersects:
dependencies:
@@ -1185,8 +1185,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1201,7 +1201,7 @@ importers:
specifier: ^2.1.4
version: 2.1.4
boolean-shapely:
- specifier: '*'
+ specifier: ^0.1.2
version: 0.1.2
load-json-file:
specifier: ^7.0.1
@@ -1210,14 +1210,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-boolean-overlap:
dependencies:
@@ -1237,8 +1237,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
geojson-equality-ts:
specifier: ^1.0.2
version: 1.0.2
@@ -1256,11 +1256,11 @@ importers:
specifier: ^2.1.4
version: 2.1.4
boolean-shapely:
- specifier: '*'
+ specifier: ^0.1.2
version: 0.1.2
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -1268,14 +1268,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-boolean-parallel:
dependencies:
@@ -1292,8 +1292,8 @@ importers:
specifier: workspace:*
version: link:../turf-rhumb-bearing
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1314,17 +1314,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-boolean-point-in-polygon:
dependencies:
@@ -1335,11 +1335,11 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
point-in-polygon-hao:
- specifier: ^1.1.0
- version: 1.1.0
+ specifier: ^1.2.4
+ version: 1.2.4
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1357,14 +1357,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-boolean-point-on-line:
dependencies:
@@ -1375,8 +1375,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1391,8 +1391,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -1400,17 +1400,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-boolean-touches:
dependencies:
@@ -1427,8 +1427,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1443,14 +1443,14 @@ importers:
specifier: ^2.1.4
version: 2.1.4
boolean-jsts:
- specifier: '*'
+ specifier: ^0.0.1
version: 0.0.1
boolean-shapely:
- specifier: '*'
+ specifier: ^0.1.2
version: 0.1.2
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -1458,14 +1458,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-boolean-valid:
dependencies:
@@ -1497,11 +1497,11 @@ importers:
specifier: workspace:*
version: link:../turf-line-intersect
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
geojson-polygon-self-intersections:
- specifier: ^1.2.1
- version: 1.2.1
+ specifier: ^3.0.0
+ version: 3.0.0
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1516,14 +1516,14 @@ importers:
specifier: ^2.1.4
version: 2.1.4
boolean-jsts:
- specifier: '*'
+ specifier: ^0.0.1
version: 0.0.1
boolean-shapely:
- specifier: '*'
+ specifier: ^0.1.2
version: 0.1.2
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -1531,14 +1531,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-boolean-within:
dependencies:
@@ -1561,8 +1561,8 @@ importers:
specifier: workspace:*
version: link:../turf-line-split
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1577,14 +1577,14 @@ importers:
specifier: ^2.1.4
version: 2.1.4
boolean-jsts:
- specifier: '*'
+ specifier: ^0.0.1
version: 0.0.1
boolean-shapely:
- specifier: '*'
+ specifier: ^0.1.2
version: 0.1.2
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -1592,14 +1592,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-buffer:
dependencies:
@@ -1613,8 +1613,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@turf/jsts':
- specifier: ^2.7.1
- version: 2.7.1
+ specifier: ^2.7.2
+ version: 2.7.2
'@turf/meta':
specifier: workspace:*
version: link:../turf-meta
@@ -1622,11 +1622,11 @@ importers:
specifier: workspace:*
version: link:../turf-projection
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
d3-geo:
- specifier: 1.7.1
- version: 1.7.1
+ specifier: 3.1.1
+ version: 3.1.1
devDependencies:
'@turf/truncate':
specifier: workspace:*
@@ -1647,14 +1647,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-center:
dependencies:
@@ -1665,8 +1665,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1687,8 +1687,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -1696,17 +1696,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-center-mean:
dependencies:
@@ -1720,8 +1720,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1742,8 +1742,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -1751,17 +1751,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-center-median:
dependencies:
@@ -1781,8 +1781,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1815,17 +1815,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-center-of-mass:
dependencies:
@@ -1845,8 +1845,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1861,8 +1861,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -1870,17 +1870,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-centroid:
dependencies:
@@ -1891,8 +1891,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -1907,8 +1907,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -1916,17 +1916,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-circle:
dependencies:
@@ -1937,15 +1937,15 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
devDependencies:
'@placemarkio/check-geojson':
- specifier: ^0.1.12
- version: 0.1.12
+ specifier: ^0.1.14
+ version: 0.1.14
'@turf/truncate':
specifier: workspace:*
version: link:../turf-truncate
@@ -1965,17 +1965,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-clean-coords:
dependencies:
@@ -1989,8 +1989,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2017,17 +2017,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-clone:
dependencies:
@@ -2035,8 +2035,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2057,14 +2057,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-clusters:
dependencies:
@@ -2075,8 +2075,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2094,14 +2094,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-clusters-dbscan:
dependencies:
@@ -2115,8 +2115,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
'@types/geokdbush':
specifier: ^1.1.5
version: 1.1.5
@@ -2149,8 +2149,8 @@ importers:
specifier: ^3.0.0
version: 3.0.0
concaveman:
- specifier: ^1.2.1
- version: 1.2.1
+ specifier: ^2.0.0
+ version: 2.0.0
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -2158,17 +2158,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-clusters-kmeans:
dependencies:
@@ -2185,11 +2185,11 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
skmeans:
- specifier: 0.9.7
- version: 0.9.7
+ specifier: 0.11.3
+ version: 0.11.3
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2207,8 +2207,8 @@ importers:
specifier: ^2.1.5
version: 2.1.5
'@types/skmeans':
- specifier: ^0.11.7
- version: 0.11.7
+ specifier: ^0.11.8
+ version: 0.11.8
'@types/tape':
specifier: ^5.8.1
version: 5.8.1
@@ -2219,8 +2219,8 @@ importers:
specifier: ^3.0.0
version: 3.0.0
concaveman:
- specifier: ^1.2.1
- version: 1.2.1
+ specifier: ^2.0.0
+ version: 2.0.0
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -2228,17 +2228,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-collect:
dependencies:
@@ -2252,11 +2252,11 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
rbush:
- specifier: ^3.0.1
- version: 3.0.1
+ specifier: ^4.0.1
+ version: 4.0.1
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2265,8 +2265,8 @@ importers:
specifier: ^2.1.5
version: 2.1.5
'@types/rbush':
- specifier: ^3.0.4
- version: 3.0.4
+ specifier: ^4.0.0
+ version: 4.0.0
'@types/tape':
specifier: ^5.8.1
version: 5.8.1
@@ -2277,14 +2277,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-combine:
dependencies:
@@ -2295,8 +2295,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2314,14 +2314,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-concave:
dependencies:
@@ -2344,13 +2344,13 @@ importers:
specifier: workspace:*
version: link:../turf-tin
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
topojson-client:
- specifier: 3.x
+ specifier: ~3.1.0
version: 3.1.0
topojson-server:
- specifier: 3.x
+ specifier: ~3.0.1
version: 3.0.1
tslib:
specifier: ^2.8.1
@@ -2363,11 +2363,11 @@ importers:
specifier: ^5.8.1
version: 5.8.1
'@types/topojson-client':
- specifier: 3.1.3
- version: 3.1.3
+ specifier: 3.1.5
+ version: 3.1.5
'@types/topojson-server':
- specifier: 3.0.3
- version: 3.0.3
+ specifier: 3.0.4
+ version: 3.0.4
benchmark:
specifier: ^2.1.4
version: 2.1.4
@@ -2378,17 +2378,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-convex:
dependencies:
@@ -2399,11 +2399,11 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
concaveman:
- specifier: ^1.2.1
- version: 1.2.1
+ specifier: ^2.0.0
+ version: 2.0.0
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2421,8 +2421,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -2430,17 +2430,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-destination:
dependencies:
@@ -2451,8 +2451,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2470,8 +2470,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -2479,17 +2479,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-difference:
dependencies:
@@ -2500,8 +2500,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
polyclip-ts:
specifier: ^0.16.8
version: 0.16.8
@@ -2519,8 +2519,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -2528,17 +2528,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-directional-mean:
dependencies:
@@ -2564,12 +2564,15 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
devDependencies:
+ '@turf/truncate':
+ specifier: workspace:*
+ version: link:../turf-truncate
'@types/benchmark':
specifier: ^2.1.5
version: 2.1.5
@@ -2586,17 +2589,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-dissolve:
dependencies:
@@ -2613,8 +2616,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
polyclip-ts:
specifier: ^0.16.8
version: 0.16.8
@@ -2638,17 +2641,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-distance:
dependencies:
@@ -2659,8 +2662,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2681,17 +2684,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-distance-weight:
dependencies:
@@ -2708,8 +2711,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2730,17 +2733,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-ellipse:
dependencies:
@@ -2760,15 +2763,15 @@ importers:
specifier: workspace:*
version: link:../turf-transform-rotate
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
devDependencies:
'@placemarkio/check-geojson':
- specifier: ^0.1.12
- version: 0.1.12
+ specifier: ^0.1.14
+ version: 0.1.14
'@turf/area':
specifier: workspace:*
version: link:../turf-area
@@ -2794,8 +2797,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -2803,17 +2806,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-envelope:
dependencies:
@@ -2827,8 +2830,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2849,14 +2852,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-explode:
dependencies:
@@ -2867,8 +2870,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2889,17 +2892,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-flatten:
dependencies:
@@ -2910,8 +2913,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2932,17 +2935,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-flip:
dependencies:
@@ -2956,8 +2959,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -2978,17 +2981,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-geojson-rbush:
dependencies:
@@ -3002,11 +3005,11 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
rbush:
- specifier: ^3.0.1
- version: 3.0.1
+ specifier: ^4.0.1
+ version: 4.0.1
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3021,8 +3024,8 @@ importers:
specifier: ^2.1.5
version: 2.1.5
'@types/rbush':
- specifier: ^3.0.4
- version: 3.0.4
+ specifier: ^4.0.0
+ version: 4.0.0
'@types/tape':
specifier: ^5.8.1
version: 5.8.1
@@ -3036,17 +3039,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-great-circle:
dependencies:
@@ -3057,8 +3060,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
arc:
specifier: ^0.2.0
version: 0.2.0
@@ -3085,23 +3088,23 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-helpers:
dependencies:
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3119,14 +3122,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-hex-grid:
dependencies:
@@ -3143,8 +3146,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3171,17 +3174,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-interpolate:
dependencies:
@@ -3219,8 +3222,8 @@ importers:
specifier: workspace:*
version: link:../turf-triangle-grid
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3247,17 +3250,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-intersect:
dependencies:
@@ -3268,8 +3271,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
polyclip-ts:
specifier: ^0.16.8
version: 0.16.8
@@ -3287,8 +3290,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -3296,17 +3299,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-invariant:
dependencies:
@@ -3314,8 +3317,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3333,14 +3336,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-isobands:
dependencies:
@@ -3366,8 +3369,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3403,17 +3406,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-isolines:
dependencies:
@@ -3430,8 +3433,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3467,17 +3470,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-kinks:
dependencies:
@@ -3485,8 +3488,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3510,17 +3513,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-length:
dependencies:
@@ -3534,8 +3537,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3556,17 +3559,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-line-arc:
dependencies:
@@ -3580,8 +3583,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3605,17 +3608,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-line-chunk:
dependencies:
@@ -3632,8 +3635,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3657,17 +3660,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-line-intersect:
dependencies:
@@ -3675,8 +3678,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
sweepline-intersections:
specifier: ^1.5.0
version: 1.5.0
@@ -3703,17 +3706,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-line-offset:
dependencies:
@@ -3727,8 +3730,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3753,19 +3756,19 @@ importers:
version: 5.9.0
tstyche:
specifier: ^6.2.0
- version: 6.2.0(typescript@5.8.3)
+ version: 6.2.0(typescript@5.9.3)
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-line-overlap:
dependencies:
@@ -3791,8 +3794,8 @@ importers:
specifier: workspace:*
version: link:../turf-nearest-point-on-line
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
fast-deep-equal:
specifier: ^3.1.3
version: 3.1.3
@@ -3816,17 +3819,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-line-segment:
dependencies:
@@ -3840,8 +3843,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3862,17 +3865,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-line-slice:
dependencies:
@@ -3886,8 +3889,8 @@ importers:
specifier: workspace:*
version: link:../turf-nearest-point-on-line
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3911,17 +3914,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-line-slice-along:
dependencies:
@@ -3938,8 +3941,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -3966,14 +3969,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-line-split:
dependencies:
@@ -4005,8 +4008,8 @@ importers:
specifier: workspace:*
version: link:../turf-truncate
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4027,17 +4030,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-line-to-polygon:
dependencies:
@@ -4054,8 +4057,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4076,17 +4079,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-mask:
dependencies:
@@ -4097,8 +4100,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
polyclip-ts:
specifier: ^0.16.8
version: 0.16.8
@@ -4125,17 +4128,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-meta:
dependencies:
@@ -4143,8 +4146,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4165,14 +4168,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-midpoint:
dependencies:
@@ -4189,8 +4192,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4208,14 +4211,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-moran-index:
dependencies:
@@ -4229,8 +4232,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4251,17 +4254,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-nearest-neighbor-analysis:
dependencies:
@@ -4290,8 +4293,8 @@ importers:
specifier: workspace:*
version: link:../turf-nearest-point
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4315,17 +4318,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-nearest-point:
dependencies:
@@ -4342,8 +4345,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4364,17 +4367,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-nearest-point-on-line:
dependencies:
@@ -4391,8 +4394,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4422,17 +4425,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-nearest-point-to-line:
dependencies:
@@ -4449,8 +4452,8 @@ importers:
specifier: workspace:*
version: link:../turf-point-to-line-distance
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4480,17 +4483,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-planepoint:
dependencies:
@@ -4501,8 +4504,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4520,14 +4523,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-point-grid:
dependencies:
@@ -4544,8 +4547,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4572,17 +4575,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-point-on-feature:
dependencies:
@@ -4602,8 +4605,8 @@ importers:
specifier: workspace:*
version: link:../turf-nearest-point
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4627,17 +4630,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-point-to-line-distance:
dependencies:
@@ -4669,8 +4672,8 @@ importers:
specifier: workspace:*
version: link:../turf-rhumb-distance
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4694,17 +4697,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-point-to-polygon-distance:
dependencies:
@@ -4727,8 +4730,8 @@ importers:
specifier: workspace:*
version: link:../turf-polygon-to-line
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4749,17 +4752,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-points-within-polygon:
dependencies:
@@ -4773,8 +4776,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4792,14 +4795,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-polygon-smooth:
dependencies:
@@ -4810,8 +4813,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4826,8 +4829,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -4835,17 +4838,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-polygon-tangents:
dependencies:
@@ -4868,8 +4871,8 @@ importers:
specifier: workspace:*
version: link:../turf-nearest-point
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4890,17 +4893,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-polygon-to-line:
dependencies:
@@ -4911,8 +4914,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4933,17 +4936,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-polygonize:
dependencies:
@@ -4963,8 +4966,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -4985,17 +4988,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-projection:
dependencies:
@@ -5009,8 +5012,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5031,23 +5034,23 @@ importers:
specifier: ^7.0.1
version: 7.0.1
proj4:
- specifier: ^2.9.2
- version: 2.9.2
+ specifier: ^2.20.2
+ version: 2.20.2
tape:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-quadrat-analysis:
dependencies:
@@ -5079,8 +5082,8 @@ importers:
specifier: workspace:*
version: link:../turf-square-grid
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5104,17 +5107,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-random:
dependencies:
@@ -5122,8 +5125,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5138,20 +5141,20 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
tape:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-rectangle-grid:
dependencies:
@@ -5165,8 +5168,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5193,17 +5196,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-rewind:
dependencies:
@@ -5223,8 +5226,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5245,17 +5248,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-rhumb-bearing:
dependencies:
@@ -5266,8 +5269,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5288,17 +5291,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-rhumb-destination:
dependencies:
@@ -5309,8 +5312,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5334,17 +5337,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-rhumb-distance:
dependencies:
@@ -5355,8 +5358,8 @@ importers:
specifier: workspace:*
version: link:../turf-invariant
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5380,17 +5383,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-sample:
dependencies:
@@ -5398,8 +5401,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5417,14 +5420,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-sector:
dependencies:
@@ -5444,8 +5447,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5469,17 +5472,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-shortest-path:
dependencies:
@@ -5511,8 +5514,8 @@ importers:
specifier: workspace:*
version: link:../turf-transform-scale
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5536,17 +5539,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-simplify:
dependencies:
@@ -5563,8 +5566,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5588,17 +5591,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-square:
dependencies:
@@ -5609,8 +5612,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5628,14 +5631,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-square-grid:
dependencies:
@@ -5646,8 +5649,8 @@ importers:
specifier: workspace:*
version: link:../turf-rectangle-grid
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5671,17 +5674,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-standard-deviational-ellipse:
dependencies:
@@ -5704,8 +5707,8 @@ importers:
specifier: workspace:*
version: link:../turf-points-within-polygon
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5732,17 +5735,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-tag:
dependencies:
@@ -5759,8 +5762,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5781,14 +5784,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-tesselate:
dependencies:
@@ -5796,11 +5799,11 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
earcut:
- specifier: ^2.2.4
- version: 2.2.4
+ specifier: ^3.0.2
+ version: 3.0.2
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5818,14 +5821,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-tin:
dependencies:
@@ -5833,8 +5836,8 @@ importers:
specifier: workspace:*
version: link:../turf-helpers
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5852,14 +5855,14 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
packages/turf-transform-rotate:
dependencies:
@@ -5888,8 +5891,8 @@ importers:
specifier: workspace:*
version: link:../turf-rhumb-distance
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5913,17 +5916,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-transform-scale:
dependencies:
@@ -5958,8 +5961,8 @@ importers:
specifier: workspace:*
version: link:../turf-rhumb-distance
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -5989,17 +5992,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-transform-translate:
dependencies:
@@ -6019,8 +6022,8 @@ importers:
specifier: workspace:*
version: link:../turf-rhumb-destination
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -6044,17 +6047,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-triangle-grid:
dependencies:
@@ -6068,8 +6071,8 @@ importers:
specifier: workspace:*
version: link:../turf-intersect
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -6096,17 +6099,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-truncate:
dependencies:
@@ -6117,8 +6120,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -6139,17 +6142,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-union:
dependencies:
@@ -6160,8 +6163,8 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
polyclip-ts:
specifier: ^0.16.8
version: 0.16.8
@@ -6179,8 +6182,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -6188,17 +6191,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-unkink-polygon:
dependencies:
@@ -6215,11 +6218,11 @@ importers:
specifier: workspace:*
version: link:../turf-meta
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
rbush:
- specifier: ^3.0.1
- version: 3.0.1
+ specifier: ^4.0.1
+ version: 4.0.1
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -6231,8 +6234,8 @@ importers:
specifier: ^2.1.5
version: 2.1.5
'@types/rbush':
- specifier: ^3.0.4
- version: 3.0.4
+ specifier: ^4.0.0
+ version: 4.0.0
'@types/tape':
specifier: ^5.8.1
version: 5.8.1
@@ -6246,17 +6249,17 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages/turf-voronoi:
dependencies:
@@ -6273,11 +6276,11 @@ importers:
specifier: ^1.1.12
version: 1.1.12
'@types/geojson':
- specifier: ^7946.0.10
- version: 7946.0.14
+ specifier: ^7946.0.16
+ version: 7946.0.16
d3-voronoi:
- specifier: 1.1.2
- version: 1.1.2
+ specifier: 1.1.4
+ version: 1.1.4
tslib:
specifier: ^2.8.1
version: 2.8.1
@@ -6292,8 +6295,8 @@ importers:
specifier: ^2.1.4
version: 2.1.4
glob:
- specifier: ^11.1.0
- version: 11.1.0
+ specifier: ^13.0.6
+ version: 13.0.6
load-json-file:
specifier: ^7.0.1
version: 7.0.1
@@ -6301,167 +6304,154 @@ importers:
specifier: ^5.9.0
version: 5.9.0
tsup:
- specifier: ^8.4.0
- version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ specifier: ^8.5.1
+ version: 8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)
tsx:
- specifier: ^4.19.4
- version: 4.19.4
+ specifier: ^4.21.0
+ version: 4.21.0
typescript:
- specifier: ^5.8.3
- version: 5.8.3
+ specifier: ^5.9.3
+ version: 5.9.3
write-json-file:
- specifier: ^6.0.0
- version: 6.0.0
+ specifier: ^7.0.0
+ version: 7.0.0
packages:
- '@ampproject/remapping@2.3.0':
- resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
- engines: {node: '>=6.0.0'}
-
- '@babel/code-frame@7.26.2':
- resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/compat-data@7.26.8':
- resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/core@7.26.0':
- resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
+ '@babel/code-frame@7.29.0':
+ resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.10':
- resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
+ '@babel/compat-data@7.29.0':
+ resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.26.2':
- resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
+ '@babel/core@7.29.0':
+ resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.27.0':
- resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
+ '@babel/generator@7.29.1':
+ resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.25.9':
- resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
+ '@babel/helper-annotate-as-pure@7.27.3':
+ resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.27.0':
- resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
+ '@babel/helper-compilation-targets@7.28.6':
+ resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.27.0':
- resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==}
+ '@babel/helper-create-class-features-plugin@7.28.6':
+ resolution: {integrity: sha512-dTOdvsjnG3xNT9Y0AUg1wAl38y+4Rl4sf9caSQZOXdNqVn+H+HbbJ4IyyHaIqNR6SW9oJpA/RuRjsjCw2IdIow==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.27.0':
- resolution: {integrity: sha512-fO8l08T76v48BhpNRW/nQ0MxfnSdoSKUJBMjubOAYffsVuGG5qOfMq7N6Es7UJvi7Y8goXXo07EfcHZXDPuELQ==}
+ '@babel/helper-create-regexp-features-plugin@7.28.5':
+ resolution: {integrity: sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-define-polyfill-provider@0.6.4':
- resolution: {integrity: sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==}
+ '@babel/helper-define-polyfill-provider@0.6.6':
+ resolution: {integrity: sha512-mOAsxeeKkUKayvZR3HeTYD/fICpCPLJrU5ZjelT/PA6WHtNDBOE436YiaEUvHN454bRM3CebhDsIpieCc4texA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-member-expression-to-functions@7.25.9':
- resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
+ '@babel/helper-globals@7.28.0':
+ resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.25.9':
- resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
+ '@babel/helper-member-expression-to-functions@7.28.5':
+ resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.26.0':
- resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
+ '@babel/helper-module-imports@7.28.6':
+ resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/helper-module-transforms@7.28.6':
+ resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.25.9':
- resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
+ '@babel/helper-optimise-call-expression@7.27.1':
+ resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.26.5':
- resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
+ '@babel/helper-plugin-utils@7.28.6':
+ resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.25.9':
- resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
+ '@babel/helper-remap-async-to-generator@7.27.1':
+ resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.26.5':
- resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==}
+ '@babel/helper-replace-supers@7.28.6':
+ resolution: {integrity: sha512-mq8e+laIk94/yFec3DxSjCRD2Z0TAjhVbEJY3UQrlwVo15Lmt7C2wAUbK4bjnTs4APkwsYLTahXRraQXhb1WCg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
- resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
+ resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.25.9':
- resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
+ '@babel/helper-string-parser@7.27.1':
+ resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.25.9':
- resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
+ '@babel/helper-validator-identifier@7.28.5':
+ resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.25.9':
- resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
+ '@babel/helper-validator-option@7.27.1':
+ resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.25.9':
- resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
+ '@babel/helper-wrap-function@7.28.6':
+ resolution: {integrity: sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.27.0':
- resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
+ '@babel/helpers@7.28.6':
+ resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.2':
- resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/parser@7.27.0':
- resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
+ '@babel/parser@7.29.0':
+ resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
- resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5':
+ resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
- resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1':
+ resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
- resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1':
+ resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
- resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1':
+ resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
- resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.6':
+ resolution: {integrity: sha512-a0aBScVTlNaiUe35UtfxAN7A/tehvvG4/ByO6+46VPKTRSlfnAFsgKy0FUh+qAkQrDTmhDkT+IBOKlOoMUxQ0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -6472,14 +6462,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.26.0':
- resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
+ '@babel/plugin-syntax-import-assertions@7.28.6':
+ resolution: {integrity: sha512-pSJUpFHdx9z5nqTSirOCMtYVP2wFgoWhP0p3g8ONK/4IHhLIBd0B9NYqAvIUAhq+OkhO4VM1tENCt0cjlsNShw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.26.0':
- resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
+ '@babel/plugin-syntax-import-attributes@7.28.6':
+ resolution: {integrity: sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -6490,308 +6480,314 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.25.9':
- resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
+ '@babel/plugin-transform-arrow-functions@7.27.1':
+ resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.26.8':
- resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==}
+ '@babel/plugin-transform-async-generator-functions@7.29.0':
+ resolution: {integrity: sha512-va0VdWro4zlBr2JsXC+ofCPB2iG12wPtVGTWFx2WLDOM3nYQZZIGP82qku2eW/JR83sD+k2k+CsNtyEbUqhU6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.25.9':
- resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
+ '@babel/plugin-transform-async-to-generator@7.28.6':
+ resolution: {integrity: sha512-ilTRcmbuXjsMmcZ3HASTe4caH5Tpo93PkTxF9oG2VZsSWsahydmcEHhix9Ik122RcTnZnUzPbmux4wh1swfv7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.26.5':
- resolution: {integrity: sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==}
+ '@babel/plugin-transform-block-scoped-functions@7.27.1':
+ resolution: {integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.27.0':
- resolution: {integrity: sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==}
+ '@babel/plugin-transform-block-scoping@7.28.6':
+ resolution: {integrity: sha512-tt/7wOtBmwHPNMPu7ax4pdPz6shjFrmHDghvNC+FG9Qvj7D6mJcoRQIF5dy4njmxR941l6rgtvfSB2zX3VlUIw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.25.9':
- resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
+ '@babel/plugin-transform-class-properties@7.28.6':
+ resolution: {integrity: sha512-dY2wS3I2G7D697VHndN91TJr8/AAfXQNt5ynCTI/MpxMsSzHp+52uNivYT5wCPax3whc47DR8Ba7cmlQMg24bw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.26.0':
- resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
+ '@babel/plugin-transform-class-static-block@7.28.6':
+ resolution: {integrity: sha512-rfQ++ghVwTWTqQ7w8qyDxL1XGihjBss4CmTgGRCTAC9RIbhVpyp4fOeZtta0Lbf+dTNIVJer6ych2ibHwkZqsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.25.9':
- resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
+ '@babel/plugin-transform-classes@7.28.6':
+ resolution: {integrity: sha512-EF5KONAqC5zAqT783iMGuM2ZtmEBy+mJMOKl2BCvPZ2lVrwvXnB6o+OBWCS+CoeCCpVRF2sA2RBKUxvT8tQT5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.25.9':
- resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
+ '@babel/plugin-transform-computed-properties@7.28.6':
+ resolution: {integrity: sha512-bcc3k0ijhHbc2lEfpFHgx7eYw9KNXqOerKWfzbxEHUGKnS3sz9C4CNL9OiFN1297bDNfUiSO7DaLzbvHQQQ1BQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.25.9':
- resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
+ '@babel/plugin-transform-destructuring@7.28.5':
+ resolution: {integrity: sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.25.9':
- resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
+ '@babel/plugin-transform-dotall-regex@7.28.6':
+ resolution: {integrity: sha512-SljjowuNKB7q5Oayv4FoPzeB74g3QgLt8IVJw9ADvWy3QnUb/01aw8I4AVv8wYnPvQz2GDDZ/g3GhcNyDBI4Bg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.25.9':
- resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
+ '@babel/plugin-transform-duplicate-keys@7.27.1':
+ resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
- resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.0':
+ resolution: {integrity: sha512-zBPcW2lFGxdiD8PUnPwJjag2J9otbcLQzvbiOzDxpYXyCuYX9agOwMPGn1prVH0a4qzhCKu24rlH4c1f7yA8rw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-dynamic-import@7.25.9':
- resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
+ '@babel/plugin-transform-dynamic-import@7.27.1':
+ resolution: {integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-explicit-resource-management@7.28.6':
+ resolution: {integrity: sha512-Iao5Konzx2b6g7EPqTy40UZbcdXE126tTxVFr/nAIj+WItNxjKSYTEw3RC+A2/ZetmdJsgueL1KhaMCQHkLPIg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.26.3':
- resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==}
+ '@babel/plugin-transform-exponentiation-operator@7.28.6':
+ resolution: {integrity: sha512-WitabqiGjV/vJ0aPOLSFfNY1u9U3R7W36B03r5I2KoNix+a3sOhJ3pKFB3R5It9/UiK78NiO0KE9P21cMhlPkw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.25.9':
- resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
+ '@babel/plugin-transform-export-namespace-from@7.27.1':
+ resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.26.9':
- resolution: {integrity: sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==}
+ '@babel/plugin-transform-for-of@7.27.1':
+ resolution: {integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.25.9':
- resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
+ '@babel/plugin-transform-function-name@7.27.1':
+ resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.25.9':
- resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
+ '@babel/plugin-transform-json-strings@7.28.6':
+ resolution: {integrity: sha512-Nr+hEN+0geQkzhbdgQVPoqr47lZbm+5fCUmO70722xJZd0Mvb59+33QLImGj6F+DkK3xgDi1YVysP8whD6FQAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.25.9':
- resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
+ '@babel/plugin-transform-literals@7.27.1':
+ resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.25.9':
- resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
+ '@babel/plugin-transform-logical-assignment-operators@7.28.6':
+ resolution: {integrity: sha512-+anKKair6gpi8VsM/95kmomGNMD0eLz1NQ8+Pfw5sAwWH9fGYXT50E55ZpV0pHUHWf6IUTWPM+f/7AAff+wr9A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.25.9':
- resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
+ '@babel/plugin-transform-member-expression-literals@7.27.1':
+ resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.25.9':
- resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
+ '@babel/plugin-transform-modules-amd@7.27.1':
+ resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.26.3':
- resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==}
+ '@babel/plugin-transform-modules-commonjs@7.28.6':
+ resolution: {integrity: sha512-jppVbf8IV9iWWwWTQIxJMAJCWBuuKx71475wHwYytrRGQ2CWiDvYlADQno3tcYpS/T2UUWFQp3nVtYfK/YBQrA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.25.9':
- resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==}
+ '@babel/plugin-transform-modules-systemjs@7.29.0':
+ resolution: {integrity: sha512-PrujnVFbOdUpw4UHiVwKvKRLMMic8+eC0CuNlxjsyZUiBjhFdPsewdXCkveh2KqBA9/waD0W1b4hXSOBQJezpQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.25.9':
- resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
+ '@babel/plugin-transform-modules-umd@7.27.1':
+ resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
- resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.29.0':
+ resolution: {integrity: sha512-1CZQA5KNAD6ZYQLPw7oi5ewtDNxH/2vuCh+6SmvgDfhumForvs8a1o9n0UrEoBD8HU4djO2yWngTQlXl1NDVEQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.25.9':
- resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
+ '@babel/plugin-transform-new-target@7.27.1':
+ resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.26.6':
- resolution: {integrity: sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.28.6':
+ resolution: {integrity: sha512-3wKbRgmzYbw24mDJXT7N+ADXw8BC/imU9yo9c9X9NKaLF1fW+e5H1U5QjMUBe4Qo4Ox/o++IyUkl1sVCLgevKg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.25.9':
- resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
+ '@babel/plugin-transform-numeric-separator@7.28.6':
+ resolution: {integrity: sha512-SJR8hPynj8outz+SlStQSwvziMN4+Bq99it4tMIf5/Caq+3iOc0JtKyse8puvyXkk3eFRIA5ID/XfunGgO5i6w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.25.9':
- resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
+ '@babel/plugin-transform-object-rest-spread@7.28.6':
+ resolution: {integrity: sha512-5rh+JR4JBC4pGkXLAcYdLHZjXudVxWMXbB6u6+E9lRL5TrGVbHt1TjxGbZ8CkmYw9zjkB7jutzOROArsqtncEA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.25.9':
- resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
+ '@babel/plugin-transform-object-super@7.27.1':
+ resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.25.9':
- resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
+ '@babel/plugin-transform-optional-catch-binding@7.28.6':
+ resolution: {integrity: sha512-R8ja/Pyrv0OGAvAXQhSTmWyPJPml+0TMqXlO5w+AsMEiwb2fg3WkOvob7UxFSL3OIttFSGSRFKQsOhJ/X6HQdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.25.9':
- resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
+ '@babel/plugin-transform-optional-chaining@7.28.6':
+ resolution: {integrity: sha512-A4zobikRGJTsX9uqVFdafzGkqD30t26ck2LmOzAuLL8b2x6k3TIqRiT2xVvA9fNmFeTX484VpsdgmKNA0bS23w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.25.9':
- resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
+ '@babel/plugin-transform-parameters@7.27.7':
+ resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.25.9':
- resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
+ '@babel/plugin-transform-private-methods@7.28.6':
+ resolution: {integrity: sha512-piiuapX9CRv7+0st8lmuUlRSmX6mBcVeNQ1b4AYzJxfCMuBfB0vBXDiGSmm03pKJw1v6cZ8KSeM+oUnM6yAExg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.25.9':
- resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
+ '@babel/plugin-transform-private-property-in-object@7.28.6':
+ resolution: {integrity: sha512-b97jvNSOb5+ehyQmBpmhOCiUC5oVK4PMnpRvO7+ymFBoqYjeDHIU9jnrNUuwHOiL9RpGDoKBpSViarV+BU+eVA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.25.9':
- resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
+ '@babel/plugin-transform-property-literals@7.27.1':
+ resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.27.0':
- resolution: {integrity: sha512-LX/vCajUJQDqE7Aum/ELUMZAY19+cDpghxrnyt5I1tV6X5PyC86AOoWXWFYFeIvauyeSA6/ktn4tQVn/3ZifsA==}
+ '@babel/plugin-transform-regenerator@7.29.0':
+ resolution: {integrity: sha512-FijqlqMA7DmRdg/aINBSs04y8XNTYw/lr1gJ2WsmBnnaNw1iS43EPkJW+zK7z65auG3AWRFXWj+NcTQwYptUog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regexp-modifiers@7.26.0':
- resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
+ '@babel/plugin-transform-regexp-modifiers@7.28.6':
+ resolution: {integrity: sha512-QGWAepm9qxpaIs7UM9FvUSnCGlb8Ua1RhyM4/veAxLwt3gMat/LSGrZixyuj4I6+Kn9iwvqCyPTtbdxanYoWYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-reserved-words@7.25.9':
- resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
+ '@babel/plugin-transform-reserved-words@7.27.1':
+ resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.25.9':
- resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
+ '@babel/plugin-transform-shorthand-properties@7.27.1':
+ resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.25.9':
- resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
+ '@babel/plugin-transform-spread@7.28.6':
+ resolution: {integrity: sha512-9U4QObUC0FtJl05AsUcodau/RWDytrU6uKgkxu09mLR9HLDAtUMoPuuskm5huQsoktmsYpI+bGmq+iapDcriKA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.25.9':
- resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
+ '@babel/plugin-transform-sticky-regex@7.27.1':
+ resolution: {integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.26.8':
- resolution: {integrity: sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==}
+ '@babel/plugin-transform-template-literals@7.27.1':
+ resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.27.0':
- resolution: {integrity: sha512-+LLkxA9rKJpNoGsbLnAgOCdESl73vwYn+V6b+5wHbrE7OGKVDPHIQvbFSzqE6rwqaCw2RE+zdJrlLkcf8YOA0w==}
+ '@babel/plugin-transform-typeof-symbol@7.27.1':
+ resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.25.9':
- resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
+ '@babel/plugin-transform-unicode-escapes@7.27.1':
+ resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.25.9':
- resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
+ '@babel/plugin-transform-unicode-property-regex@7.28.6':
+ resolution: {integrity: sha512-4Wlbdl/sIZjzi/8St0evF0gEZrgOswVO6aOzqxh1kDZOl9WmLrHq2HtGhnOJZmHZYKP8WZ1MDLCt5DAWwRo57A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.25.9':
- resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
+ '@babel/plugin-transform-unicode-regex@7.27.1':
+ resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.25.9':
- resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
+ '@babel/plugin-transform-unicode-sets-regex@7.28.6':
+ resolution: {integrity: sha512-/wHc/paTUmsDYN7SZkpWxogTOBNnlx7nBQYfy6JJlCT7G3mVhltk3e++N7zV0XfgGsrqBxd4rJQt9H16I21Y1Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.26.9':
- resolution: {integrity: sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==}
+ '@babel/preset-env@7.29.0':
+ resolution: {integrity: sha512-fNEdfc0yi16lt6IZo2Qxk3knHVdfMYX33czNb4v8yWhemoBhibCpQK/uYHtSKIiO+p/zd3+8fYVXhQdOVV608w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -6801,243 +6797,233 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/runtime@7.27.0':
- resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/template@7.27.0':
- resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/traverse@7.25.9':
- resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/traverse@7.27.0':
- resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==}
+ '@babel/template@7.28.6':
+ resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.0':
- resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
+ '@babel/traverse@7.29.0':
+ resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.27.0':
- resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
+ '@babel/types@7.29.0':
+ resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
engines: {node: '>=6.9.0'}
- '@colors/colors@1.6.0':
- resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==}
- engines: {node: '>=0.1.90'}
-
- '@dabh/diagnostics@2.0.3':
- resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==}
-
'@dependents/detective-less@5.0.1':
resolution: {integrity: sha512-Y6+WUMsTFWE5jb20IFP4YGa5IrGY/+a/FbOSjDF/wz9gepU2hwCYSXRHP/vPwBvwcY3SVMASt4yXxbXNXigmZQ==}
engines: {node: '>=18'}
- '@emnapi/core@1.7.1':
- resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==}
+ '@emnapi/core@1.8.1':
+ resolution: {integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==}
- '@emnapi/runtime@1.7.1':
- resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==}
+ '@emnapi/runtime@1.8.1':
+ resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==}
'@emnapi/wasi-threads@1.1.0':
resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
- '@esbuild/aix-ppc64@0.25.3':
- resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==}
+ '@esbuild/aix-ppc64@0.27.3':
+ resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.25.3':
- resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==}
+ '@esbuild/android-arm64@0.27.3':
+ resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.25.3':
- resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==}
+ '@esbuild/android-arm@0.27.3':
+ resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.25.3':
- resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==}
+ '@esbuild/android-x64@0.27.3':
+ resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.25.3':
- resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==}
+ '@esbuild/darwin-arm64@0.27.3':
+ resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.3':
- resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==}
+ '@esbuild/darwin-x64@0.27.3':
+ resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.25.3':
- resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==}
+ '@esbuild/freebsd-arm64@0.27.3':
+ resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.3':
- resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==}
+ '@esbuild/freebsd-x64@0.27.3':
+ resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.25.3':
- resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==}
+ '@esbuild/linux-arm64@0.27.3':
+ resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.25.3':
- resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==}
+ '@esbuild/linux-arm@0.27.3':
+ resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.25.3':
- resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==}
+ '@esbuild/linux-ia32@0.27.3':
+ resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.25.3':
- resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==}
+ '@esbuild/linux-loong64@0.27.3':
+ resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.25.3':
- resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==}
+ '@esbuild/linux-mips64el@0.27.3':
+ resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.25.3':
- resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==}
+ '@esbuild/linux-ppc64@0.27.3':
+ resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.3':
- resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==}
+ '@esbuild/linux-riscv64@0.27.3':
+ resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.25.3':
- resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==}
+ '@esbuild/linux-s390x@0.27.3':
+ resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.25.3':
- resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==}
+ '@esbuild/linux-x64@0.27.3':
+ resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.3':
- resolution: {integrity: sha512-1QaLtOWq0mzK6tzzp0jRN3eccmN3hezey7mhLnzC6oNlJoUJz4nym5ZD7mDnS/LZQgkrhEbEiTn515lPeLpgWA==}
+ '@esbuild/netbsd-arm64@0.27.3':
+ resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.3':
- resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==}
+ '@esbuild/netbsd-x64@0.27.3':
+ resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.3':
- resolution: {integrity: sha512-zGAVApJEYTbOC6H/3QBr2mq3upG/LBEXr85/pTtKiv2IXcgKV0RT0QA/hSXZqSvLEpXeIxah7LczB4lkiYhTAQ==}
+ '@esbuild/openbsd-arm64@0.27.3':
+ resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.3':
- resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==}
+ '@esbuild/openbsd-x64@0.27.3':
+ resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.25.3':
- resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==}
+ '@esbuild/openharmony-arm64@0.27.3':
+ resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@esbuild/sunos-x64@0.27.3':
+ resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.25.3':
- resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==}
+ '@esbuild/win32-arm64@0.27.3':
+ resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.25.3':
- resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==}
+ '@esbuild/win32-ia32@0.27.3':
+ resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.25.3':
- resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==}
+ '@esbuild/win32-x64@0.27.3':
+ resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.6.1':
- resolution: {integrity: sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
-
- '@eslint-community/eslint-utils@4.7.0':
- resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==}
+ '@eslint-community/eslint-utils@4.9.1':
+ resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.12.1':
- resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
+ '@eslint-community/regexpp@4.12.2':
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/config-array@0.21.0':
- resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/config-array@0.23.2':
+ resolution: {integrity: sha512-YF+fE6LV4v5MGWRGj7G404/OZzGNepVF8fxk7jqmqo3lrza7a0uUcDnROGRBG1WFC1omYUS/Wp1f42i0M+3Q3A==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@eslint/config-helpers@0.3.0':
- resolution: {integrity: sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/config-helpers@0.5.2':
+ resolution: {integrity: sha512-a5MxrdDXEvqnIq+LisyCX6tQMPF/dSJpCfBgBauY+pNZ28yCtSsTvyTYrMhaI+LK26bVyCJfJkT0u8KIj2i1dQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@eslint/core@0.15.1':
- resolution: {integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/core@1.1.0':
+ resolution: {integrity: sha512-/nr9K9wkr3P1EzFTdFdMoLuo1PmIxjmwvPozwoSodjNBdefGujXQUF93u1DDZpEaTuDvMsIQddsd35BwtrW9Xw==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@eslint/eslintrc@3.3.1':
- resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
+ '@eslint/eslintrc@3.3.4':
+ resolution: {integrity: sha512-4h4MVF8pmBsncB60r0wSJiIeUKTSD4m7FmTFThG8RHlsg9ajqckLm9OraguFGZE4vVdpiI1Q4+hFnisopmG6gQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.31.0':
- resolution: {integrity: sha512-LOm5OVt7D4qiKCqoiPbA7LWmI+tbw1VbTUowBcUMgQSuM6poJufkFkYDcQpo5KfgD39TnNySV26QjOh7VFpSyw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/js@10.0.1':
+ resolution: {integrity: sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+ peerDependencies:
+ eslint: ^10.0.0
+ peerDependenciesMeta:
+ eslint:
+ optional: true
- '@eslint/object-schema@2.1.6':
- resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/object-schema@3.0.2':
+ resolution: {integrity: sha512-HOy56KJt48Bx8KmJ+XGQNSUMT/6dZee/M54XyUyuvTvPXJmsERRvBchsUVx1UMe1WwIH49XLAczNC7V2INsuUw==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
- '@eslint/plugin-kit@0.3.4':
- resolution: {integrity: sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/plugin-kit@0.6.0':
+ resolution: {integrity: sha512-bIZEUzOI1jkhviX2cp5vNyXQc6olzb2ohewQubuYlMXZ2Q/XjBO0x0XhGPvc9fjSIiUN0vw+0hq53BJ4eQSJKQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+
+ '@gar/promise-retry@1.0.2':
+ resolution: {integrity: sha512-Lm/ZLhDZcBECta3TmCQSngiQykFdfw+QtI1/GYMsZd4l3nG+P8WLB16XuS7WaBGLQ+9E+cOcWQsth9cayuGt8g==}
+ engines: {node: ^20.17.0 || >=22.9.0}
'@gwhitney/detect-indent@7.0.1':
resolution: {integrity: sha512-7bQW+gkKa2kKZPeJf6+c6gFK9ARxQfn+FKy9ScTBppyKRWH2KzsmweXUoklqeEiHiNVWaeP5csIdsNq6w7QhzA==}
@@ -7047,20 +7033,16 @@ packages:
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
- '@humanfs/node@0.16.6':
- resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
+ '@humanfs/node@0.16.7':
+ resolution: {integrity: sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==}
engines: {node: '>=18.18.0'}
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/retry@0.3.1':
- resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
- engines: {node: '>=18.18'}
-
- '@humanwhocodes/retry@0.4.2':
- resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
+ '@humanwhocodes/retry@0.4.3':
+ resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
engines: {node: '>=18.18'}
'@hutson/parse-repository-url@3.0.2':
@@ -7205,13 +7187,13 @@ packages:
resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
engines: {node: 20 || >=22}
- '@isaacs/brace-expansion@5.0.0':
- resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==}
+ '@isaacs/brace-expansion@5.0.1':
+ resolution: {integrity: sha512-WMz71T1JS624nWj2n2fnYAuPovhv7EUhk69R6i9dsVyzxt5eM3bjwvgk9L+APE1TRscGysAVMANkB0jh0LQZrQ==}
engines: {node: 20 || >=22}
- '@isaacs/cliui@8.0.2':
- resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
- engines: {node: '>=12'}
+ '@isaacs/cliui@9.0.0':
+ resolution: {integrity: sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==}
+ engines: {node: '>=18'}
'@isaacs/fs-minipass@4.0.1':
resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
@@ -7228,74 +7210,60 @@ packages:
resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/schemas@29.6.3':
- resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
'@jest/schemas@30.0.5':
resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jridgewell/gen-mapping@0.3.5':
- resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
- engines: {node: '>=6.0.0'}
+ '@jridgewell/gen-mapping@0.3.13':
+ resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
- '@jridgewell/gen-mapping@0.3.8':
- resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
- engines: {node: '>=6.0.0'}
+ '@jridgewell/remapping@2.3.5':
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
- '@jridgewell/set-array@1.2.1':
- resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
- engines: {node: '>=6.0.0'}
-
- '@jridgewell/source-map@0.3.5':
- resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
+ '@jridgewell/source-map@0.3.11':
+ resolution: {integrity: sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==}
- '@jridgewell/sourcemap-codec@1.5.0':
- resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
+ '@jridgewell/sourcemap-codec@1.5.5':
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
- '@jridgewell/trace-mapping@0.3.25':
- resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+ '@jridgewell/trace-mapping@0.3.31':
+ resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
- '@lerna/create@9.0.3':
- resolution: {integrity: sha512-hUTEWrR8zH+/Z3bp/R1aLm6DW8vB/BB7KH7Yeg4fMfrvSwxegiLVW9uJFAzWkK4mzEagmj/Dti85Yg9MN13t0g==}
+ '@lerna/create@9.0.4':
+ resolution: {integrity: sha512-WxedGD98G8/a6HztCXNWquaM0x17oSvfvuqDsLxNNX1qXGyrzmMUmd1mQikF/47uy80X6qyWdaRtaAHlwkvEUA==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
'@ljharb/resumer@0.1.3':
resolution: {integrity: sha512-d+tsDgfkj9X5QTriqM4lKesCkMMJC3IrbPKHvayP00ELx2axdXvDfWkqjxrLXIzGcQzmj7VAUT1wopqARTvafw==}
engines: {node: '>= 0.4'}
- '@ljharb/through@2.3.13':
- resolution: {integrity: sha512-/gKJun8NNiWGZJkGzI/Ragc53cOdcLNdzjLaIa+GEjguQs0ulsurx8WN0jijdK9yPqDvziX995sMRLyLt1uZMQ==}
- engines: {node: '>= 0.4'}
-
'@ljharb/through@2.3.14':
resolution: {integrity: sha512-ajBvlKpWucBB17FuQYUShqpqy8GRgYEpJW0vWJbUu1CV9lWyrDCapy0lScU8T8Z6qn49sSwJB3+M+evYIdGg+A==}
engines: {node: '>= 0.4'}
- '@monorepolint/cli@0.5.0':
- resolution: {integrity: sha512-8yLqmxe2tLDOF5+36gYf6/1EhNe3Wfk64dGnak/3xuR9OhCFg+JzRA3YmL0ZtyZNxUOv1D5TGJlTeRmoRlo8ug==}
+ '@monorepolint/cli@0.6.0-alpha.5':
+ resolution: {integrity: sha512-HdKoMhSIEQ+rrwE/7+EFJGsu3/T0U9pYOiLlLa1llMtrCiyTFi6fe/2CXvfoch/IdITspRD4Ix2QifYVwUQfIQ==}
engines: {node: '>=18'}
hasBin: true
- '@monorepolint/config@0.5.0':
- resolution: {integrity: sha512-y3dMd1iGWPERZTVHUt4Ahmup/Z+qbGqXr+lLe2mGRnGlxZZudvjpEEKpRkgy6/DAKRSdIB8sg/ilL/pvAOjbEQ==}
+ '@monorepolint/config@0.6.0-alpha.6':
+ resolution: {integrity: sha512-GCiRCVHL34oT1y6NSRR0hHY/CMjj7PSQF04qs9WHjCyZva3IbO6Ah5Lb8DVAHMB0HpsVOxgZxY/CeeZLc6bZ/Q==}
engines: {node: '>=18'}
- '@monorepolint/core@0.5.0':
- resolution: {integrity: sha512-rKkfIIUEVofoS5AVHOM6VlYR8O5nUJC7OgbO2uQK0gTrUp9gg/046YLgC5M5TufWWGoFU2idnBjyqcXbobbk0w==}
+ '@monorepolint/core@0.6.0-alpha.6':
+ resolution: {integrity: sha512-opiHpA3m7wYk81lNZPKtFyVXsuAKfA7UHe8kdiNG4I0MbN5nAIiQsUPxv41fJ+UO230JLKBUCQTzIofF2cE+Eg==}
engines: {node: '>=18'}
- '@monorepolint/rules@0.5.0':
- resolution: {integrity: sha512-/Jrm46TUG2VGV+xcE9VjSssvFRoCV8Dtzn5Okay+fDzj7C6rQ7Xzz92LO/XSxW7GYgEi3p5j3+fhvkqGA4zitg==}
+ '@monorepolint/rules@0.6.0-alpha.6':
+ resolution: {integrity: sha512-S77AdRL1yMJALejbjbSQWlhnwR9oyDOVT9Jn6wsW9edVkmfqbcHQIkM8SRWitQFET5Rl0WfKh/vuyiy+gLc6cQ==}
engines: {node: '>=18'}
- '@monorepolint/utils@0.5.0':
- resolution: {integrity: sha512-KOLkGNLJ4oQSBUOIRvlCGi+lZfkEXS5kRt+8meR9jqxIgo0knTbBKAA9bCRPUSpx5UFZ7Z3JXKBArE05zSQpwA==}
+ '@monorepolint/utils@0.6.0-alpha.6':
+ resolution: {integrity: sha512-TQq8Zbf3wlQLw0cjvY6UWhom7yYhDyFoRHYdGYPTZ7aVtT8l9sJjgX1hAaygR+vYJrr0cKIANdY+ltsqAwqivw==}
engines: {node: '>=18'}
'@napi-rs/wasm-runtime@0.2.4':
@@ -7313,10 +7281,6 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@npmcli/agent@3.0.0':
- resolution: {integrity: sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
'@npmcli/agent@4.0.0':
resolution: {integrity: sha512-kAQTcEN9E8ERLVg5AsGwLNoFb+oEG6engbqAU2P43gD4JEIkNGMHdVQ096FsOAAYpZPB0RSt0zgInKIAS1l5QA==}
engines: {node: ^20.17.0 || >=22.9.0}
@@ -7338,8 +7302,8 @@ packages:
resolution: {integrity: sha512-GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@npmcli/git@7.0.1':
- resolution: {integrity: sha512-+XTFxK2jJF/EJJ5SoAzXk3qwIDfvFc5/g+bD274LZ7uY7LE8sTfG6Z8rOanPl2ZEvZWqNvmEdtXC25cE54VcoA==}
+ '@npmcli/git@7.0.2':
+ resolution: {integrity: sha512-oeolHDjExNAJAnlYP2qzNjMX/Xi9bmu78C9dIGr4xjobrSKbuMYCph8lTzn4vnW3NjIqVmw/f8BCfouqyJXlRg==}
engines: {node: ^20.17.0 || >=22.9.0}
'@npmcli/installed-package-contents@3.0.0':
@@ -7396,62 +7360,62 @@ packages:
resolution: {integrity: sha512-7VmYAmk4csGv08QzrDKScdzn11jHPFGyqJW39FyPgPuAp3zIaUmuCo1yxw9aGs+NEJuTGQ9Gwqpt93vtJubucg==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@npmcli/run-script@10.0.2':
- resolution: {integrity: sha512-9lCTqxaoa9c9cdkzSSx+q/qaYrCrUPEwTWzLkVYg1/T8ESH3BG9vmb1zRc6ODsBVB0+gnGRSqSr01pxTS1yX3A==}
+ '@npmcli/run-script@10.0.3':
+ resolution: {integrity: sha512-ER2N6itRkzWbbtVmZ9WKaWxVlKlOeBFF1/7xx+KA5J1xKa4JjUwBdb6tDpk0v1qA+d+VDwHI9qmLcXSWcmi+Rw==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@nx/devkit@22.1.3':
- resolution: {integrity: sha512-ACwmelqurupbuvvTUA+hWw978H2odLGvnYtlSut3qmw/TzS7bkptd4CmPpks6dGPTOSQbJGzbwLo9OEMs36BBA==}
+ '@nx/devkit@22.5.2':
+ resolution: {integrity: sha512-5JuCMlU6AwXBKCoMWp1hTyTzjfB5vXL5khmoziZPmnaIBg+gX0Hp13YhWfO1C6/HuXS+i4mor7dtFHukPKWemQ==}
peerDependencies:
nx: '>= 21 <= 23 || ^22.0.0-0'
- '@nx/nx-darwin-arm64@22.1.3':
- resolution: {integrity: sha512-4D/jXGsr3jcQ0vBo8aXXZMdfmC3n4OsZ1zjFaOXlF62Ujug+RqI/IvKxycT9r7Lr09PmW2OqBC01NfIWKoBLhg==}
+ '@nx/nx-darwin-arm64@22.5.2':
+ resolution: {integrity: sha512-CPtgK/s4FQ0Y/6WmHpJccOTANve5UjlFajLp+S8Z538zHdc5a5MjJBcXo9oRzKNvhTHoGijr/fCMU2erMrYYtg==}
cpu: [arm64]
os: [darwin]
- '@nx/nx-darwin-x64@22.1.3':
- resolution: {integrity: sha512-XmdccOBp1Lx9DXUzYDX65mkFqFvXaxUKm1d63bfA43vxIYUpR59SASB81KRQ/Q4dgvvU27C0EJuxSJbXsSkSYw==}
+ '@nx/nx-darwin-x64@22.5.2':
+ resolution: {integrity: sha512-YuFGIpmtMPbMM3QchJttlLFE5oNenE+3mRCWcMNrXPOixsw28flvYWhFcHE3CPV8q/E+Yg0FsOG+8u1p7eEgWg==}
cpu: [x64]
os: [darwin]
- '@nx/nx-freebsd-x64@22.1.3':
- resolution: {integrity: sha512-O+o4mqPwhKxfdsri4KxDbXbjwIwr04GfTSfA0TwgXs6hFf68qmc45FAmPGrPSvxIJg9+mUVDeFirdS8GcUE0jQ==}
+ '@nx/nx-freebsd-x64@22.5.2':
+ resolution: {integrity: sha512-Oy3jejPB7lszxAf4rdTpJfOBVgAUtkUZJCLTdGdnpveF/m3s9MN9DaeEXgUs0mMp1qV3Y0KE3KcVHqII54AoBQ==}
cpu: [x64]
os: [freebsd]
- '@nx/nx-linux-arm-gnueabihf@22.1.3':
- resolution: {integrity: sha512-ZIPDgzLq8qmvrZ3Bp+bWXam5uKwahjcChBNtORVtrHQfm4mxov2RMUMKTg2ZsVAWVP64zK+gmzG5LuoZjPMm4Q==}
+ '@nx/nx-linux-arm-gnueabihf@22.5.2':
+ resolution: {integrity: sha512-38bZGStG6bZ+R7ZbGxvnDVjVrV6bRTsiX8rr3fmM/AkEfvgyhWgE3R+xqUHoJVM4PK0I2YlYoSjIny4gFeOBxQ==}
cpu: [arm]
os: [linux]
- '@nx/nx-linux-arm64-gnu@22.1.3':
- resolution: {integrity: sha512-wgpPaTpQKl+cCkSuE5zamTVrg14mRvT+bLAeN/yHSUgMztvGxwl3Ll+K9DgEcktBo1PLECTWNkVaW8IAsJm4Rg==}
+ '@nx/nx-linux-arm64-gnu@22.5.2':
+ resolution: {integrity: sha512-D+tPXB0tkSuDPsuXvyQIsF3f3PBWfAwIe9FkBWtVoDVYqE+jbz+tVGsjQMNWGafLE4sC8ZQdjhsxyT8I53Anbw==}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-arm64-musl@22.1.3':
- resolution: {integrity: sha512-o9XmQehSPR2y0RD4evD+Ob3lNFuwsFOL5upVJqZ3rcE6GkJIFPg8SwEP5FaRIS5MwS04fxnek20NZ18BHjjV/g==}
+ '@nx/nx-linux-arm64-musl@22.5.2':
+ resolution: {integrity: sha512-UbO527qqa8KLBi13uXto5SmxcZv1Smer7sPexJonshDlmrJsyvx5m8nm6tcSv04W5yQEL90vPlTux8dNvEDWrw==}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-x64-gnu@22.1.3':
- resolution: {integrity: sha512-ekcinyDNTa2huVe02T2SFMR8oArohozRbMGO19zftbObXXI4dLdoAuLNb3vK9Pe4vYOpkhfxBVkZvcWMmx7JdA==}
+ '@nx/nx-linux-x64-gnu@22.5.2':
+ resolution: {integrity: sha512-wR6596Vr/Z+blUAmjLHG2TCQMs4O1oi9JXK1J/PoPeO9UqdHwStCJBAd61zDFSUYJe0x+dkeRQu96fE5BW8Kcg==}
cpu: [x64]
os: [linux]
- '@nx/nx-linux-x64-musl@22.1.3':
- resolution: {integrity: sha512-CqpRIJeIgELCqIgjtSsYnnLi6G0uqjbp/Pw9d7w4im4/NmJXqaE9gxpdHA1eowXLgAy9W1LkfzCPS8Q2IScPuQ==}
+ '@nx/nx-linux-x64-musl@22.5.2':
+ resolution: {integrity: sha512-MBXOw4AH4FWl4orwVykj/e75awTNDePogrl3pXNX9NcQLdj6JzS4e2jaALQeRBQLxQzeFvFQV/W4PBzoPV6/NA==}
cpu: [x64]
os: [linux]
- '@nx/nx-win32-arm64-msvc@22.1.3':
- resolution: {integrity: sha512-YbuWb8KQsAR9G0+7b4HA16GV962/VWtRcdS7WY2yaScmPT2W5rObl528Y2j4DuB0j/MVZj12qJKrYfUyjL+UJA==}
+ '@nx/nx-win32-arm64-msvc@22.5.2':
+ resolution: {integrity: sha512-SaWSZkRH5uV8vP2lj6RRv+kw2IzaIDXkutReOXpooshIWZl9KjrQELNTCZTYyhLDsMlcyhSvLFlTiA4NkZ8udw==}
cpu: [arm64]
os: [win32]
- '@nx/nx-win32-x64-msvc@22.1.3':
- resolution: {integrity: sha512-G90Sp409ypeOUbmj6nmEbdy043KJUKaZ7pffxmM6i63yEe2F2WdmMgdi525vUEgmq+pfB9zQQOX1sDR/rPFvtg==}
+ '@nx/nx-win32-x64-msvc@22.5.2':
+ resolution: {integrity: sha512-IK9Xd5Gh9ys4oun5ko8Uv8AEi2byN2FPXBsR1BLkt93SJ0bJVTdXGyEA+fWmEclLZIM0PiZj1KbCajVn9NEPtw==}
cpu: [x64]
os: [win32]
@@ -7459,8 +7423,8 @@ packages:
resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==}
engines: {node: '>= 18'}
- '@octokit/core@5.2.1':
- resolution: {integrity: sha512-dKYCMuPO1bmrpuogcjQ8z7ICCH3FP6WmxpwC03yjzGfZhj9fTJg6+bS1+UAplekbN2C+M61UNllGOOoAfGCrdQ==}
+ '@octokit/core@5.2.2':
+ resolution: {integrity: sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg==}
engines: {node: '>= 18'}
'@octokit/endpoint@9.0.6':
@@ -7510,16 +7474,12 @@ packages:
'@octokit/types@13.10.0':
resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==}
- '@pkgjs/parseargs@0.11.0':
- resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
- engines: {node: '>=14'}
-
'@pkgr/core@0.2.9':
resolution: {integrity: sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- '@placemarkio/check-geojson@0.1.12':
- resolution: {integrity: sha512-sSNPtPDVB0oKwImi4NYg1LVE2QSCIqs/jIRmu8U4fQVWdRjlGy+C/n7AbNO2FycE9rVWtz256f33aMGzvKC7gg==}
+ '@placemarkio/check-geojson@0.1.14':
+ resolution: {integrity: sha512-PZvNKzt6STytUw21TUkqU+TG6dbwTWb1ACosvInBYTBm37zsr8C74J6crBTQ3BWkyd6YeitYd4HibJzBEyk6Aw==}
engines: {node: '>=10'}
'@pnpm/constants@6.1.0':
@@ -7554,8 +7514,8 @@ packages:
resolution: {integrity: sha512-nRqvPYO8xUVdgy/KhJuaCrWlVT/4uZr97Mpbuizsa6CmvtCQf3NuYnVvOOrpYiKUJcZYtEvm84OooJ8+lJytMQ==}
engines: {node: '>=14.6'}
- '@rollup/plugin-babel@6.0.4':
- resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==}
+ '@rollup/plugin-babel@6.1.0':
+ resolution: {integrity: sha512-dFZNuFD2YRcoomP4oYf+DvQNSUA9ih+A3vUqopQx5EdtPGo3WBnQcI/S8pwpz91UsGfL0HsMSOlaMld8HrbubA==}
engines: {node: '>=14.0.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -7567,8 +7527,8 @@ packages:
rollup:
optional: true
- '@rollup/plugin-commonjs@28.0.3':
- resolution: {integrity: sha512-pyltgilam1QPdn+Zd9gaCfOLcnjMEJ9gV+bTw6/r73INdvzf1ah9zLIJBm+kW7R6IUFIQ1YO+VqZtYxZNWFPEQ==}
+ '@rollup/plugin-commonjs@29.0.0':
+ resolution: {integrity: sha512-U2YHaxR2cU/yAiwKJtJRhnyLk7cifnQw0zUpISsocBDoHDJn+HTV74ABqnwr5bEgWUwFZC9oFL6wLe21lHu5eQ==}
engines: {node: '>=16.0.0 || 14 >= 14.17'}
peerDependencies:
rollup: ^2.68.0||^3.0.0||^4.0.0
@@ -7585,8 +7545,8 @@ packages:
rollup:
optional: true
- '@rollup/plugin-node-resolve@16.0.1':
- resolution: {integrity: sha512-tk5YCxJWIG81umIvNkSod2qK5KyQW19qcBF/B78n1bjtOON6gzKoVeSzAE8yHCZEDmqkHKkxplExA8KzdJLJpA==}
+ '@rollup/plugin-node-resolve@16.0.3':
+ resolution: {integrity: sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^2.78.0||^3.0.0||^4.0.0
@@ -7603,17 +7563,8 @@ packages:
rollup:
optional: true
- '@rollup/pluginutils@5.1.3':
- 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
-
- '@rollup/pluginutils@5.1.4':
- resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
+ '@rollup/pluginutils@5.3.0':
+ resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -7621,103 +7572,128 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.40.1':
- resolution: {integrity: sha512-kxz0YeeCrRUHz3zyqvd7n+TVRlNyTifBsmnmNPtk3hQURUyG9eAB+usz6DAwagMusjx/zb3AjvDUvhFGDAexGw==}
+ '@rollup/rollup-android-arm-eabi@4.59.0':
+ resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.40.1':
- resolution: {integrity: sha512-PPkxTOisoNC6TpnDKatjKkjRMsdaWIhyuMkA4UsBXT9WEZY4uHezBTjs6Vl4PbqQQeu6oION1w2voYZv9yquCw==}
+ '@rollup/rollup-android-arm64@4.59.0':
+ resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.40.1':
- resolution: {integrity: sha512-VWXGISWFY18v/0JyNUy4A46KCFCb9NVsH+1100XP31lud+TzlezBbz24CYzbnA4x6w4hx+NYCXDfnvDVO6lcAA==}
+ '@rollup/rollup-darwin-arm64@4.59.0':
+ resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.40.1':
- resolution: {integrity: sha512-nIwkXafAI1/QCS7pxSpv/ZtFW6TXcNUEHAIA9EIyw5OzxJZQ1YDrX+CL6JAIQgZ33CInl1R6mHet9Y/UZTg2Bw==}
+ '@rollup/rollup-darwin-x64@4.59.0':
+ resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.40.1':
- resolution: {integrity: sha512-BdrLJ2mHTrIYdaS2I99mriyJfGGenSaP+UwGi1kB9BLOCu9SR8ZpbkmmalKIALnRw24kM7qCN0IOm6L0S44iWw==}
+ '@rollup/rollup-freebsd-arm64@4.59.0':
+ resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.40.1':
- resolution: {integrity: sha512-VXeo/puqvCG8JBPNZXZf5Dqq7BzElNJzHRRw3vjBE27WujdzuOPecDPc/+1DcdcTptNBep3861jNq0mYkT8Z6Q==}
+ '@rollup/rollup-freebsd-x64@4.59.0':
+ resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.40.1':
- resolution: {integrity: sha512-ehSKrewwsESPt1TgSE/na9nIhWCosfGSFqv7vwEtjyAqZcvbGIg4JAcV7ZEh2tfj/IlfBeZjgOXm35iOOjadcg==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
+ resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.40.1':
- resolution: {integrity: sha512-m39iO/aaurh5FVIu/F4/Zsl8xppd76S4qoID8E+dSRQvTyZTOI2gVk3T4oqzfq1PtcvOfAVlwLMK3KRQMaR8lg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.59.0':
+ resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.40.1':
- resolution: {integrity: sha512-Y+GHnGaku4aVLSgrT0uWe2o2Rq8te9hi+MwqGF9r9ORgXhmHK5Q71N757u0F8yU1OIwUIFy6YiJtKjtyktk5hg==}
+ '@rollup/rollup-linux-arm64-gnu@4.59.0':
+ resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.40.1':
- resolution: {integrity: sha512-jEwjn3jCA+tQGswK3aEWcD09/7M5wGwc6+flhva7dsQNRZZTe30vkalgIzV4tjkopsTS9Jd7Y1Bsj6a4lzz8gQ==}
+ '@rollup/rollup-linux-arm64-musl@4.59.0':
+ resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.40.1':
- resolution: {integrity: sha512-ySyWikVhNzv+BV/IDCsrraOAZ3UaC8SZB67FZlqVwXwnFhPihOso9rPOxzZbjp81suB1O2Topw+6Ug3JNegejQ==}
+ '@rollup/rollup-linux-loong64-gnu@4.59.0':
+ resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
+ cpu: [loong64]
+ os: [linux]
+
+ '@rollup/rollup-linux-loong64-musl@4.59.0':
+ resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
- resolution: {integrity: sha512-BvvA64QxZlh7WZWqDPPdt0GH4bznuL6uOO1pmgPnnv86rpUpc8ZxgZwcEgXvo02GRIZX1hQ0j0pAnhwkhwPqWg==}
+ '@rollup/rollup-linux-ppc64-gnu@4.59.0':
+ resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@rollup/rollup-linux-ppc64-musl@4.59.0':
+ resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.40.1':
- resolution: {integrity: sha512-EQSP+8+1VuSulm9RKSMKitTav89fKbHymTf25n5+Yr6gAPZxYWpj3DzAsQqoaHAk9YX2lwEyAf9S4W8F4l3VBQ==}
+ '@rollup/rollup-linux-riscv64-gnu@4.59.0':
+ resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.40.1':
- resolution: {integrity: sha512-n/vQ4xRZXKuIpqukkMXZt9RWdl+2zgGNx7Uda8NtmLJ06NL8jiHxUawbwC+hdSq1rrw/9CghCpEONor+l1e2gA==}
+ '@rollup/rollup-linux-riscv64-musl@4.59.0':
+ resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.40.1':
- resolution: {integrity: sha512-h8d28xzYb98fMQKUz0w2fMc1XuGzLLjdyxVIbhbil4ELfk5/orZlSTpF/xdI9C8K0I8lCkq+1En2RJsawZekkg==}
+ '@rollup/rollup-linux-s390x-gnu@4.59.0':
+ resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.40.1':
- resolution: {integrity: sha512-XiK5z70PEFEFqcNj3/zRSz/qX4bp4QIraTy9QjwJAb/Z8GM7kVUsD0Uk8maIPeTyPCP03ChdI+VVmJriKYbRHQ==}
+ '@rollup/rollup-linux-x64-gnu@4.59.0':
+ resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.40.1':
- resolution: {integrity: sha512-2BRORitq5rQ4Da9blVovzNCMaUlyKrzMSvkVR0D4qPuOy/+pMCrh1d7o01RATwVy+6Fa1WBw+da7QPeLWU/1mQ==}
+ '@rollup/rollup-linux-x64-musl@4.59.0':
+ resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.40.1':
- resolution: {integrity: sha512-b2bcNm9Kbde03H+q+Jjw9tSfhYkzrDUf2d5MAd1bOJuVplXvFhWz7tRtWvD8/ORZi7qSCy0idW6tf2HgxSXQSg==}
+ '@rollup/rollup-openbsd-x64@4.59.0':
+ resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@rollup/rollup-openharmony-arm64@4.59.0':
+ resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rollup/rollup-win32-arm64-msvc@4.59.0':
+ resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.40.1':
- resolution: {integrity: sha512-DfcogW8N7Zg7llVEfpqWMZcaErKfsj9VvmfSyRjCyo4BI3wPEfrzTtJkZG6gKP/Z92wFm6rz2aDO7/JfiR/whA==}
+ '@rollup/rollup-win32-ia32-msvc@4.59.0':
+ resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.40.1':
- resolution: {integrity: sha512-ECyOuDeH3C1I8jH2MK1RtBJW+YPMvSfT0a5NN0nHfQYnDSJ6tUiZH3gzwVP5/Kfh/+Tt7tpWVF9LXNTnhTJ3kA==}
+ '@rollup/rollup-win32-x64-gnu@4.59.0':
+ resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==}
+ cpu: [x64]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-msvc@4.59.0':
+ resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==}
cpu: [x64]
os: [win32]
@@ -7725,31 +7701,28 @@ packages:
resolution: {integrity: sha512-NwCl5Y0V6Di0NexvkTqdoVfmjTaQwoLM236r89KEojGmq/jMls8S+zb7yOwAPdXvbwfKDlP+lmXgAL4vKSQT+A==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@sigstore/core@3.0.0':
- resolution: {integrity: sha512-NgbJ+aW9gQl/25+GIEGYcCyi8M+ng2/5X04BMuIgoDfgvp18vDcoNHOQjQsG9418HGNYRxG3vfEXaR1ayD37gg==}
+ '@sigstore/core@3.1.0':
+ resolution: {integrity: sha512-o5cw1QYhNQ9IroioJxpzexmPjfCe7gzafd2RY3qnMpxr4ZEja+Jad/U8sgFpaue6bOaF+z7RVkyKVV44FN+N8A==}
engines: {node: ^20.17.0 || >=22.9.0}
'@sigstore/protobuf-specs@0.5.0':
resolution: {integrity: sha512-MM8XIwUjN2bwvCg1QvrMtbBmpcSHrkhFSCu1D11NyPvDQ25HEc4oG5/OcQfd/Tlf/OxmKWERDj0zGE23jQaMwA==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@sigstore/sign@4.0.1':
- resolution: {integrity: sha512-KFNGy01gx9Y3IBPG/CergxR9RZpN43N+lt3EozEfeoyqm8vEiLxwRl3ZO5sPx3Obv1ix/p7FWOlPc2Jgwfp9PA==}
+ '@sigstore/sign@4.1.0':
+ resolution: {integrity: sha512-Vx1RmLxLGnSUqx/o5/VsCjkuN5L7y+vxEEwawvc7u+6WtX2W4GNa7b9HEjmcRWohw/d6BpATXmvOwc78m+Swdg==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@sigstore/tuf@4.0.0':
- resolution: {integrity: sha512-0QFuWDHOQmz7t66gfpfNO6aEjoFrdhkJaej/AOqb4kqWZVbPWFZifXZzkxyQBB1OwTbkhdT3LNpMFxwkTvf+2w==}
+ '@sigstore/tuf@4.0.1':
+ resolution: {integrity: sha512-OPZBg8y5Vc9yZjmWCHrlWPMBqW5yd8+wFNl+thMdtcWz3vjVSoJQutF8YkrzI0SLGnkuFof4HSsWUhXrf219Lw==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@sigstore/verify@3.0.0':
- resolution: {integrity: sha512-moXtHH33AobOhTZF8xcX1MpOFqdvfCk7v6+teJL8zymBiDXwEsQH6XG9HGx2VIxnJZNm4cNSzflTLDnQLmIdmw==}
+ '@sigstore/verify@3.1.0':
+ resolution: {integrity: sha512-mNe0Iigql08YupSOGv197YdHpPPr+EzDZmfCgMc7RPNaZTw5aLN01nBl6CHJOh3BGtnMIj83EeN4butBchc8Ag==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@sinclair/typebox@0.27.8':
- resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
-
- '@sinclair/typebox@0.34.41':
- resolution: {integrity: sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==}
+ '@sinclair/typebox@0.34.48':
+ resolution: {integrity: sha512-kKJTNuK3AQOrgjjotVxMrCn1sUJwM76wMszfq1kdU4uYVJjvEWuFQ6HgvLt4Xz3fSmZlTOxJ/Ie13KnIcWQXFA==}
'@sindresorhus/merge-streams@2.3.0':
resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
@@ -7759,12 +7732,12 @@ packages:
resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
engines: {node: ^16.14.0 || >=18.0.0}
- '@tufjs/models@4.0.0':
- resolution: {integrity: sha512-h5x5ga/hh82COe+GoD4+gKUeV4T3iaYOxqLt41GRKApinPI7DMidhCmNVTjKfhCWFJIGXaFJee07XczdT4jdZQ==}
+ '@tufjs/models@4.1.0':
+ resolution: {integrity: sha512-Y8cK9aggNRsqJVaKUlEYs4s7CvQ1b1ta2DVPyAimb0I2qhzjNk+A+mxvll/klL0RlfuIUei8BF7YWiua4kQqww==}
engines: {node: ^20.17.0 || >=22.9.0}
- '@turf/jsts@2.7.1':
- resolution: {integrity: sha512-+nwOKme/aUprsxnLSfr2LylV6eL6T1Tuln+4Hl92uwZ8FrmjDRCH5Bi1LJNVfWCiYgk8+5K+t2zDphWNTsIFDA==}
+ '@turf/jsts@2.7.2':
+ resolution: {integrity: sha512-zAezGlwWHPyU0zxwcX2wQY3RkRpwuoBmhhNE9HY9kWhFDkCxZ3aWK5URKwa/SWKJbj9aztO+8vtdiBA28KVJFg==}
'@tybys/wasm-util@0.9.0':
resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
@@ -7781,17 +7754,17 @@ packages:
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
- '@types/estree@1.0.6':
- resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+ '@types/esrecurse@4.3.1':
+ resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==}
- '@types/estree@1.0.7':
- resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
+ '@types/estree@1.0.8':
+ resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
'@types/extend@3.0.4':
resolution: {integrity: sha512-ArMouDUTJEz1SQRpFsT2rIw7DeqICFv5aaVzLSIYMYQSLcwcGOfT3VyglQs/p7K3F7fT4zxr0NWxYZIdifD6dA==}
- '@types/geojson@7946.0.14':
- resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==}
+ '@types/geojson@7946.0.16':
+ resolution: {integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==}
'@types/geokdbush@1.1.5':
resolution: {integrity: sha512-jIsYnXY+RQ/YCyBqeEHxYN9mh+7PqKJUJUp84wLfZ7T2kqyVPNaXwZuvf1A2uQUkrvVqEbsG94ff8jH32AlLvA==}
@@ -7817,11 +7790,11 @@ packages:
'@types/minimist@1.2.5':
resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
- '@types/ms@0.7.34':
- resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
+ '@types/ms@2.1.0':
+ resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
- '@types/node@22.15.3':
- resolution: {integrity: sha512-lX7HFZeHf4QG/J7tBZqrCAXwz9J5RD56Y6MpP0eJkka8p+K0RY/yBTW7CYFJ4VGCclxqOLKmiGP5juQc6MKgcw==}
+ '@types/node@25.3.2':
+ resolution: {integrity: sha512-RpV6r/ij22zRRdyBPcxDeKAzH43phWVKEjL2iksqo1Vz3CuBUrgmPpPhALKiRfU7OMCmeeO9vECBMsV0hMTG8Q==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -7832,14 +7805,14 @@ packages:
'@types/parse5@6.0.3':
resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
- '@types/rbush@3.0.4':
- resolution: {integrity: sha512-knSt9cCW8jj1ZSFcFeBZaX++OucmfPxxHiRwTahZfJlnQsek7O0bazTJHWD2RVj9LEoejUYF2de3/stf+QXcXw==}
+ '@types/rbush@4.0.0':
+ resolution: {integrity: sha512-+N+2H39P8X+Hy1I5mC6awlTX54k3FhiUmvt7HWzGJZvF+syUAAxP/stwppS8JE84YHqFgRMv6fCy31202CMFxQ==}
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
- '@types/skmeans@0.11.7':
- resolution: {integrity: sha512-3fT48uRSRppOdQIlNCQKNNJRVaqzxkdCSTZM+NeHNxEpw6JejLLH78OHP54BxUHYEsa7pVsGn6uON552jwv9ZQ==}
+ '@types/skmeans@0.11.8':
+ resolution: {integrity: sha512-aX/h9LeMfsyOo0j8FR0GiyQbFK9st9zyH5OaLBoenNcC+FOifDieORNFn/6WRyXh0YP4P9+rIKrwQBTxcWW5YA==}
'@types/supports-color@8.1.3':
resolution: {integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==}
@@ -7847,108 +7820,91 @@ packages:
'@types/tape@5.8.1':
resolution: {integrity: sha512-vRjK+E1c+I4WRDSXcYfgepPjz2Knh+gulU3359LrR9H2KM8AyiMbNmX7W5aMlw7JFoXMpVOhq3bEIm78qakGbQ==}
- '@types/topojson-client@3.1.3':
- resolution: {integrity: sha512-liC+dHCxoqQy5bbJMsF59Cx1WZZwbcT084v/5bdp3NWSFUuzQpsm4gbLQh+wlv58Mng4jCsO4p8hWelqGlb7rg==}
+ '@types/topojson-client@3.1.5':
+ resolution: {integrity: sha512-C79rySTyPxnQNNguTZNI1Ct4D7IXgvyAs3p9HPecnl6mNrJ5+UhvGNYcZfpROYV2lMHI48kJPxwR+F9C6c7nmw==}
- '@types/topojson-server@3.0.3':
- resolution: {integrity: sha512-Xi903I5D0pu9il0xXRNxugj5MuIAUalZzciGS0FTLbiW4jLyd2jkoVN2g80RavHw39Z8YTFaSdRgp8f8WHbyxg==}
+ '@types/topojson-server@3.0.4':
+ resolution: {integrity: sha512-5+ieK8ePfP+K2VH6Vgs1VCt+fO1U8XZHj0UsF+NktaF0DavAo1q3IvCBXgokk/xmtvoPltSUs6vxuR/zMdOE1g==}
'@types/topojson-specification@1.0.5':
resolution: {integrity: sha512-C7KvcQh+C2nr6Y2Ub4YfgvWvWCgP2nOQMtfhlnwsRL4pYmmwzBS7HclGiS87eQfDOU/DLQpX6GEscviaz4yLIQ==}
- '@types/triple-beam@1.3.5':
- resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==}
-
- '@types/unist@2.0.10':
- resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
+ '@types/unist@2.0.11':
+ resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
- '@typescript-eslint/eslint-plugin@8.38.0':
- resolution: {integrity: sha512-CPoznzpuAnIOl4nhj4tRr4gIPj5AfKgkiJmGQDaq+fQnRJTYlcBjbX3wbciGmpoPf8DREufuPRe1tNMZnGdanA==}
+ '@typescript-eslint/eslint-plugin@8.56.1':
+ resolution: {integrity: sha512-Jz9ZztpB37dNC+HU2HI28Bs9QXpzCz+y/twHOwhyrIRdbuVDxSytJNDl6z/aAKlaRIwC7y8wJdkBv7FxYGgi0A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.38.0
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ '@typescript-eslint/parser': ^8.56.1
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/parser@8.38.0':
- resolution: {integrity: sha512-Zhy8HCvBUEfBECzIl1PKqF4p11+d0aUJS1GeUiuqK9WmOug8YCmC4h4bjyBvMyAMI9sbRczmrYL5lKg/YMbrcQ==}
+ '@typescript-eslint/parser@8.56.1':
+ resolution: {integrity: sha512-klQbnPAAiGYFyI02+znpBRLyjL4/BrBd0nyWkdC0s/6xFLkXYQ8OoRrSkqacS1ddVxf/LDyODIKbQ5TgKAf/Fg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/project-service@8.38.0':
- resolution: {integrity: sha512-dbK7Jvqcb8c9QfH01YB6pORpqX1mn5gDZc9n63Ak/+jD67oWXn3Gs0M6vddAN+eDXBCS5EmNWzbSxsn9SzFWWg==}
+ '@typescript-eslint/project-service@8.56.1':
+ resolution: {integrity: sha512-TAdqQTzHNNvlVFfR+hu2PDJrURiwKsUvxFn1M0h95BB8ah5jejas08jUWG4dBA68jDMI988IvtfdAI53JzEHOQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/scope-manager@8.38.0':
- resolution: {integrity: sha512-WJw3AVlFFcdT9Ri1xs/lg8LwDqgekWXWhH3iAF+1ZM+QPd7oxQ6jvtW/JPwzAScxitILUIFs0/AnQ/UWHzbATQ==}
+ '@typescript-eslint/scope-manager@8.56.1':
+ resolution: {integrity: sha512-YAi4VDKcIZp0O4tz/haYKhmIDZFEUPOreKbfdAN3SzUDMcPhJ8QI99xQXqX+HoUVq8cs85eRKnD+rne2UAnj2w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/tsconfig-utils@8.38.0':
- resolution: {integrity: sha512-Lum9RtSE3EroKk/bYns+sPOodqb2Fv50XOl/gMviMKNvanETUuUcC9ObRbzrJ4VSd2JalPqgSAavwrPiPvnAiQ==}
+ '@typescript-eslint/tsconfig-utils@8.56.1':
+ resolution: {integrity: sha512-qOtCYzKEeyr3aR9f28mPJqBty7+DBqsdd63eO0yyDwc6vgThj2UjWfJIcsFeSucYydqcuudMOprZ+x1SpF3ZuQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/type-utils@8.38.0':
- resolution: {integrity: sha512-c7jAvGEZVf0ao2z+nnz8BUaHZD09Agbh+DY7qvBQqLiz8uJzRgVPj5YvOh8I8uEiH8oIUGIfHzMwUcGVco/SJg==}
+ '@typescript-eslint/type-utils@8.56.1':
+ resolution: {integrity: sha512-yB/7dxi7MgTtGhZdaHCemf7PuwrHMenHjmzgUW1aJpO+bBU43OycnM3Wn+DdvDO/8zzA9HlhaJ0AUGuvri4oGg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
-
- '@typescript-eslint/types@8.31.1':
- resolution: {integrity: sha512-SfepaEFUDQYRoA70DD9GtytljBePSj17qPxFHA/h3eg6lPTqGJ5mWOtbXCk1YrVU1cTJRd14nhaXWFu0l2troQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/types@8.38.0':
- resolution: {integrity: sha512-wzkUfX3plUqij4YwWaJyqhiPE5UCRVlFpKn1oCRn2O1bJ592XxWJj8ROQ3JD5MYXLORW84063z3tZTb/cs4Tyw==}
+ '@typescript-eslint/types@8.56.1':
+ resolution: {integrity: sha512-dbMkdIUkIkchgGDIv7KLUpa0Mda4IYjo4IAMJUZ+3xNoUXxMsk9YtKpTHSChRS85o+H9ftm51gsK1dZReY9CVw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.31.1':
- resolution: {integrity: sha512-kaA0ueLe2v7KunYOyWYtlf/QhhZb7+qh4Yw6Ni5kgukMIG+iP773tjgBiLWIXYumWCwEq3nLW+TUywEp8uEeag==}
+ '@typescript-eslint/typescript-estree@8.56.1':
+ resolution: {integrity: sha512-qzUL1qgalIvKWAf9C1HpvBjif+Vm6rcT5wZd4VoMb9+Km3iS3Cv9DY6dMRMDtPnwRAFyAi7YXJpTIEXLvdfPxg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/typescript-estree@8.38.0':
- resolution: {integrity: sha512-fooELKcAKzxux6fA6pxOflpNS0jc+nOQEEOipXFNjSlBS6fqrJOVY/whSn70SScHrcJ2LDsxWrneFoWYSVfqhQ==}
+ '@typescript-eslint/utils@8.56.1':
+ resolution: {integrity: sha512-HPAVNIME3tABJ61siYlHzSWCGtOoeP2RTIaHXFMPqjrQKCGB9OgUVdiNgH7TJS2JNIQ5qQ4RsAUDuGaGme/KOA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '>=4.8.4 <5.9.0'
-
- '@typescript-eslint/utils@8.38.0':
- resolution: {integrity: sha512-hHcMA86Hgt+ijJlrD8fX0j1j8w4C92zue/8LOPAFioIno+W0+L7KqE8QZKCcPGc/92Vs9x36w/4MPTJhqXdyvg==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
-
- '@typescript-eslint/visitor-keys@8.31.1':
- resolution: {integrity: sha512-I+/rgqOVBn6f0o7NDTmAPWWC6NuqhV174lfYvAm9fUaWeiefLdux9/YI3/nLugEn9L8fcSi0XmpKi/r5u0nmpw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/visitor-keys@8.38.0':
- resolution: {integrity: sha512-pWrTcoFNWuwHlA9CvlfSsGWs14JxfN1TH25zM5L7o0pRLhsoZkDnTsXfQRJBEWJoV5DL0jf+Z+sxiud+K0mq1g==}
+ '@typescript-eslint/visitor-keys@8.56.1':
+ resolution: {integrity: sha512-KiROIzYdEV85YygXw6BI/Dx4fnBlFQu6Mq4QE4MOH9fFnhohw6wX/OAvDY2/C+ut0I3RSPKenvZJIVYqJNkhEw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@vue/compiler-core@3.5.13':
- resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==}
+ '@vue/compiler-core@3.5.29':
+ resolution: {integrity: sha512-cuzPhD8fwRHk8IGfmYaR4eEe4cAyJEL66Ove/WZL7yWNL134nqLddSLwNRIsFlnnW1kK+p8Ck3viFnC0chXCXw==}
- '@vue/compiler-dom@3.5.13':
- resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==}
+ '@vue/compiler-dom@3.5.29':
+ resolution: {integrity: sha512-n0G5o7R3uBVmVxjTIYcz7ovr8sy7QObFG8OQJ3xGCDNhbG60biP/P5KnyY8NLd81OuT1WJflG7N4KWYHaeeaIg==}
- '@vue/compiler-sfc@3.5.13':
- resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==}
+ '@vue/compiler-sfc@3.5.29':
+ resolution: {integrity: sha512-oJZhN5XJs35Gzr50E82jg2cYdZQ78wEwvRO6Y63TvLVTc+6xICzJHP1UIecdSPPYIbkautNBanDiWYa64QSFIA==}
- '@vue/compiler-ssr@3.5.13':
- resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==}
+ '@vue/compiler-ssr@3.5.29':
+ resolution: {integrity: sha512-Y/ARJZE6fpjzL5GH/phJmsFwx3g6t2KmHKHx5q+MLl2kencADKIrhH5MLF6HHpRMmlRAYBRSvv347Mepf1zVNw==}
- '@vue/shared@3.5.13':
- resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
+ '@vue/shared@3.5.29':
+ resolution: {integrity: sha512-w7SR0A5zyRByL9XUkCfdLs7t9XOHUyJ67qPGQjOou3p6GvBeBW+AVjUUmlxtZ4PIYaRvE+1LmK44O4uajlZwcg==}
'@yarnpkg/lockfile@1.1.0':
resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==}
@@ -7969,53 +7925,48 @@ packages:
resolution: {integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==}
engines: {node: ^18.17.0 || >=20.5.0}
+ abbrev@4.0.0:
+ resolution: {integrity: sha512-a1wflyaL0tHtJSmLSOVybYhy22vRih4eduhhrkcjgrWGnRfrZtovJ2FRjxuTtkkj47O/baf0R86QU5OuYpz8fA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn-walk@8.3.4:
- resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
- engines: {node: '>=0.4.0'}
-
- acorn@8.14.1:
- resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
- acorn@8.15.0:
- resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
+ acorn@8.16.0:
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
engines: {node: '>=0.4.0'}
hasBin: true
add-stream@1.0.0:
resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==}
- agent-base@7.1.1:
- resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
+ agent-base@7.1.4:
+ resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==}
engines: {node: '>= 14'}
aggregate-error@3.1.0:
resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
engines: {node: '>=8'}
- ajv@6.12.6:
- resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
+ ajv@6.14.0:
+ resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
engines: {node: '>=6'}
- ansi-escapes@7.0.0:
- resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==}
+ ansi-escapes@7.3.0:
+ resolution: {integrity: sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==}
engines: {node: '>=18'}
ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ ansi-regex@6.2.2:
+ resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
engines: {node: '>=12'}
ansi-styles@4.3.0:
@@ -8026,8 +7977,8 @@ packages:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
- ansi-styles@6.2.1:
- resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
+ ansi-styles@6.2.3:
+ resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
engines: {node: '>=12'}
any-promise@1.3.0:
@@ -8053,8 +8004,8 @@ packages:
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- array-buffer-byte-length@1.0.1:
- resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
+ array-buffer-byte-length@1.0.2:
+ resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
engines: {node: '>= 0.4'}
array-differ@3.0.0:
@@ -8068,12 +8019,16 @@ packages:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- array.prototype.every@1.1.6:
- resolution: {integrity: sha512-gNEqZD97w6bfQRNmHkFv7rNnGM+VWyHZT+h/rf9C+22owcXuENr66Lfo0phItpU5KoXW6Owb34q2+8MnSIZ57w==}
+ array.prototype.every@1.1.7:
+ resolution: {integrity: sha512-BIP72rKvrKd08ptbetLb4qvrlGjkv30yOKgKcTtOIbHyQt3shr/jyOzdApiCOh3LPYrpJo5M6i0zmVldOF2pUw==}
engines: {node: '>= 0.4'}
- arraybuffer.prototype.slice@1.0.3:
- resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
+ array.prototype.flatmap@1.3.3:
+ resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
+ engines: {node: '>= 0.4'}
+
+ arraybuffer.prototype.slice@1.0.4:
+ resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
engines: {node: '>= 0.4'}
arrify@1.0.1:
@@ -8088,6 +8043,10 @@ packages:
resolution: {integrity: sha512-WHw67kLXYbZuHTmcdbIrVArCq5wxo6NEuj3hiYAWr8mwJeC+C2mMCIBIWCiDoCye/OF/xelc+teJ1ERoWmnEIA==}
engines: {node: '>=18'}
+ async-function@1.0.0:
+ resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
+ engines: {node: '>= 0.4'}
+
async@3.2.6:
resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
@@ -8098,21 +8057,21 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
- axios@1.13.2:
- resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
+ axios@1.13.5:
+ resolution: {integrity: sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==}
- babel-plugin-polyfill-corejs2@0.4.13:
- resolution: {integrity: sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==}
+ babel-plugin-polyfill-corejs2@0.4.15:
+ resolution: {integrity: sha512-hR3GwrRwHUfYwGfrisXPIDP3JcYfBrW7wKE7+Au6wDYl7fm/ka1NEII6kORzxNU556JjfidZeBsO10kYvtV1aw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.11.1:
- resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==}
+ babel-plugin-polyfill-corejs3@0.14.0:
+ resolution: {integrity: sha512-AvDcMxJ34W4Wgy4KBIIePQTAOP1Ie2WFwkQp3dB7FQ/f0lI5+nM96zUnYEOE1P9sEg0es5VCP0HxiWu5fUHZAQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-regenerator@0.6.4:
- resolution: {integrity: sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==}
+ babel-plugin-polyfill-regenerator@0.6.6:
+ resolution: {integrity: sha512-hYm+XLYRMvupxiQzrvXUj7YyvFFVfv5gI0R71AJzudg1g2AI2vyCPPIFEBjk162/wFzti3inBHo7isWFuEVS/A==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -8122,24 +8081,33 @@ packages:
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ balanced-match@4.0.4:
+ resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
+ engines: {node: 18 || 20 || >=22}
+
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ baseline-browser-mapping@2.10.0:
+ resolution: {integrity: sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
before-after-hook@2.2.3:
resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
benchmark@2.1.4:
resolution: {integrity: sha512-l9MlfN4M1K/H2fbhfMy3B7vJd6AGKJVQn2h6Sg/Yx+KckoUA7ewS5Vv6TjSq18ooE1kS9hhAlQRH3AkXIh/aOQ==}
- bignumber.js@9.1.2:
- resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==}
+ bignumber.js@9.3.1:
+ resolution: {integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==}
bin-links@5.0.0:
resolution: {integrity: sha512-sdleLVfCjBtgO5cNjA2HVRvWBJAHs4zwenaCPMNJAJU0yNxpzj80IpjOIimkpkr+mhlA+how5poQtt53PygbHA==}
engines: {node: ^18.17.0 || >=20.5.0}
- binary-extensions@2.2.0:
- resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
+ binary-extensions@2.3.0:
+ resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
bl@4.1.0:
@@ -8157,12 +8125,16 @@ packages:
brace-expansion@2.0.2:
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
+ brace-expansion@5.0.3:
+ resolution: {integrity: sha512-fy6KJm2RawA5RcHkLa1z/ScpBeA762UF9KmZQxwIbDtRJrgLzM10depAiEQ+CXYcoiqW1/m96OAAoke2nE9EeA==}
+ engines: {node: 18 || 20 || >=22}
+
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.24.4:
- resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
+ browserslist@4.28.1:
+ resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -8186,10 +8158,6 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- cacache@19.0.1:
- resolution: {integrity: sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
cacache@20.0.3:
resolution: {integrity: sha512-3pUp4e8hv07k1QlijZu6Kn7c9+ZpWWk4j3F8N3xPuCExULobqJydKYOTj1FTq58srkJsXvO7LbGAH4C0ZU3WGw==}
engines: {node: ^20.17.0 || >=22.9.0}
@@ -8198,14 +8166,14 @@ packages:
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
engines: {node: '>= 0.4'}
- call-bind@1.0.7:
- resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
- engines: {node: '>= 0.4'}
-
call-bind@1.0.8:
resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
engines: {node: '>= 0.4'}
+ call-bound@1.0.4:
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
+ engines: {node: '>= 0.4'}
+
callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
@@ -8218,12 +8186,12 @@ packages:
resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
engines: {node: '>=6'}
- camelcase@8.0.0:
- resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==}
- engines: {node: '>=16'}
+ camelcase@9.0.0:
+ resolution: {integrity: sha512-TO9xmyXTZ9HUHI8M1OnvExxYB0eYVS/1e5s7IDMTAoIcwUd+aNcFODs6Xk83mobk0velyHFQgA1yIrvYc6wclw==}
+ engines: {node: '>=20'}
- caniuse-lite@1.0.30001716:
- resolution: {integrity: sha512-49/c1+x3Kwz7ZIWt+4DvK3aMJy9oYXXG6/97JKsnjdCk/6n9vVyWL8NAwVt95Lwt9eigI10Hl782kDfZUUlRXw==}
+ caniuse-lite@1.0.30001774:
+ resolution: {integrity: sha512-DDdwPGz99nmIEv216hKSgLD+D4ikHQHjBC/seF98N9CPqRX4M5mSxT9eTV6oyisnJcuzxtZy4n17yKKQYmYQOA==}
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -8236,12 +8204,8 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- chalk@5.3.0:
- resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
- engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
-
- chalk@5.4.1:
- resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
+ chalk@5.6.2:
+ resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
character-entities-html4@2.1.0:
@@ -8256,18 +8220,14 @@ packages:
chardet@2.1.1:
resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==}
- chokidar@3.5.3:
- resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
+ chokidar@3.6.0:
+ resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
chokidar@4.0.3:
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
- chownr@2.0.0:
- resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
- engines: {node: '>=10'}
-
chownr@3.0.0:
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
engines: {node: '>=18'}
@@ -8279,8 +8239,8 @@ packages:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
- ci-info@4.0.0:
- resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
+ ci-info@4.4.0:
+ resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
engines: {node: '>=8'}
clean-stack@2.2.0:
@@ -8299,13 +8259,9 @@ packages:
resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==}
engines: {node: '>=6'}
- cli-spinners@2.9.2:
- resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
- engines: {node: '>=6'}
-
- cli-truncate@4.0.0:
- resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==}
- engines: {node: '>=18'}
+ cli-truncate@5.1.1:
+ resolution: {integrity: sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A==}
+ engines: {node: '>=20'}
cli-width@4.1.0:
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
@@ -8330,35 +8286,20 @@ packages:
resolution: {integrity: sha512-rtpaCbr164TPPh+zFdkWpCyZuKkjpAzODfaZCf/SVJZzJN+4bHQb/LP3Jzq5/+84um3XXY8r548XiWKSborwVw==}
engines: {node: ^18.17.0 || >=20.5.0}
- color-convert@1.9.3:
- resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
-
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
- color-name@1.1.3:
- resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
-
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
- color-string@1.9.1:
- resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
-
color-support@1.1.3:
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
hasBin: true
- color@3.2.1:
- resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==}
-
colorette@2.0.20:
resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==}
- colorspace@1.1.4:
- resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==}
-
columnify@1.6.0:
resolution: {integrity: sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==}
engines: {node: '>=8.0.0'}
@@ -8374,9 +8315,9 @@ packages:
resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
engines: {node: '>=18'}
- commander@13.1.0:
- resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==}
- engines: {node: '>=18'}
+ commander@14.0.3:
+ resolution: {integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==}
+ engines: {node: '>=20'}
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
@@ -8401,8 +8342,11 @@ packages:
resolution: {integrity: sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==}
engines: {'0': node >= 6.0}
- concaveman@1.2.1:
- resolution: {integrity: sha512-PwZYKaM/ckQSa8peP5JpVr7IMJ4Nn/MHIaWUjP4be+KoZ7Botgs8seAZGpmaOM+UZXawcdYRao/px9ycrCihHw==}
+ concaveman@2.0.0:
+ resolution: {integrity: sha512-3a9C//4G44/boNehBPZMRh8XxrwBvTXlhENUim+GMm207WoDie/Vq89U5lkhLn3kKA+vxwmwfdQPWIRwjQWoLA==}
+
+ confbox@0.1.8:
+ resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
consola@3.4.2:
resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==}
@@ -8445,8 +8389,8 @@ packages:
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
- core-js-compat@3.42.0:
- resolution: {integrity: sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==}
+ core-js-compat@3.48.0:
+ resolution: {integrity: sha512-OM4cAF3D6VtH/WkLtWvyNC56EZVXsZdU3iqaMG2B4WvYrlqU831pc4UtG5yp0sE9z8Y02wVN7PjW5Zf9Gt0f1Q==}
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -8469,32 +8413,34 @@ packages:
engines: {node: '>=4'}
hasBin: true
- d3-array@1.2.4:
- resolution: {integrity: sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==}
+ d3-array@3.2.4:
+ resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
+ engines: {node: '>=12'}
- d3-geo@1.7.1:
- resolution: {integrity: sha512-O4AempWAr+P5qbk2bC2FuN/sDW4z+dN2wDf9QV3bxQt4M5HfOEeXLgJ/UKQW0+o1Dj8BE+L5kiDbdWUMjsmQpw==}
+ d3-geo@3.1.1:
+ resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==}
+ engines: {node: '>=12'}
d3-queue@3.0.7:
resolution: {integrity: sha512-2rs+6pNFKkrJhqe1rg5znw7dKJ7KZr62j9aLZfhondkrnz6U7VRmJj1UGcbD8MRc46c7H8m4SWhab8EalBQrkw==}
- d3-voronoi@1.1.2:
- resolution: {integrity: sha512-RhGS1u2vavcO7ay7ZNAPo4xeDh/VYeGof3x5ZLJBQgYhLegxr3s5IykvWmJ94FTU6mcbtp4sloqZ54mP6R4Utw==}
+ d3-voronoi@1.1.4:
+ resolution: {integrity: sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==}
dargs@7.0.0:
resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==}
engines: {node: '>=8'}
- data-view-buffer@1.0.1:
- resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
+ data-view-buffer@1.0.2:
+ resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
engines: {node: '>= 0.4'}
- data-view-byte-length@1.0.1:
- resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
+ data-view-byte-length@1.0.2:
+ resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
engines: {node: '>= 0.4'}
- data-view-byte-offset@1.0.0:
- resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
+ data-view-byte-offset@1.0.1:
+ resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
engines: {node: '>= 0.4'}
dateformat@3.0.3:
@@ -8503,24 +8449,6 @@ packages:
de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
- debug@4.3.7:
- resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
- debug@4.4.0:
- resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
debug@4.4.3:
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
engines: {node: '>=6.0'}
@@ -8538,12 +8466,12 @@ packages:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
- decamelize@6.0.0:
- resolution: {integrity: sha512-Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA==}
+ decamelize@6.0.1:
+ resolution: {integrity: sha512-G7Cqgaelq68XHJNGlZ7lrNQyhZGsFqpwtGFexqUv4IQdjKoSYF7ipZ9UuTJZUSQXFj/XaoBLuEVIVqr8EJngEQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- decode-named-character-reference@1.0.2:
- resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
+ decode-named-character-reference@1.3.0:
+ resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==}
dedent@1.5.3:
resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==}
@@ -8586,8 +8514,8 @@ packages:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
- dependency-tree@11.1.1:
- resolution: {integrity: sha512-pnkCd8VGOq70EVaEQxDC9mZCjCwYj4yG4j8h+PEJswuWp+rdE6p8zbtVvWk+yPwaVimOjlhNi782U9K5KOU9MQ==}
+ dependency-tree@11.3.0:
+ resolution: {integrity: sha512-T893F3p48rblazo45S/5jkFEvU8mzZ8obtNSyP2S1QCA8e9PpVH+hIakHnQYdnhitwQ8wo9btYJpQxnjiGm0Qg==}
engines: {node: '>=18'}
hasBin: true
@@ -8602,8 +8530,8 @@ packages:
resolution: {integrity: sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==}
engines: {node: '>=4'}
- detect-indent@7.0.1:
- resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==}
+ detect-indent@7.0.2:
+ resolution: {integrity: sha512-y+8xyqdGLL+6sh0tVeHcfP/QDd8gUgbasolJJpY7NgeQGSZ739bDtSiaiDgtoicy+mtYB81dKLxO9xRhCyIB3A==}
engines: {node: '>=12.20'}
detective-amd@6.0.1:
@@ -8649,12 +8577,8 @@ packages:
peerDependencies:
typescript: ^5.4.4
- diff-sequences@29.6.3:
- resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
- diff@5.2.0:
- resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
+ diff@5.2.2:
+ resolution: {integrity: sha512-vtcDfH3TOjP8UekytvnHH1o1P4FcUdt4eQ1Y+Abap1tk/OB2MWQvcwS2ClCd1zuIhc3JKOx6p3kod8Vfys3E+A==}
engines: {node: '>=0.3.1'}
doctrine-temporary-fork@2.1.0:
@@ -8686,8 +8610,8 @@ packages:
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
engines: {node: '>= 0.4'}
- earcut@2.2.4:
- resolution: {integrity: sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==}
+ earcut@3.0.2:
+ resolution: {integrity: sha512-X7hshQbLyMJ/3RPhyObLARM2sNxxmRALLKx1+NVFFnQ9gKzmCrxm9+uLIAdBcvc8FNLpctqlQ2V6AE92Ol9UDQ==}
eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
@@ -8697,11 +8621,11 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.5.145:
- resolution: {integrity: sha512-pZ5EcTWRq/055MvSBgoFEyKf2i4apwfoqJbK/ak2jnFq8oHjZ+vzc3AhRcz37Xn+ZJfL58R666FLJx0YOK9yTw==}
+ electron-to-chromium@1.5.302:
+ resolution: {integrity: sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==}
- emoji-regex@10.4.0:
- resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
+ emoji-regex@10.6.0:
+ resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -8709,25 +8633,22 @@ packages:
emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- enabled@2.0.0:
- resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==}
-
encoding@0.1.13:
resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
- end-of-stream@1.4.4:
- resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+ end-of-stream@1.4.5:
+ resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
- enhanced-resolve@5.18.1:
- resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
+ enhanced-resolve@5.19.0:
+ resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==}
engines: {node: '>=10.13.0'}
enquirer@2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
- entities@4.5.0:
- resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
+ entities@7.0.1:
+ resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
engines: {node: '>=0.12'}
env-paths@2.2.1:
@@ -8746,22 +8667,18 @@ packages:
err-code@2.0.3:
resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
- error-ex@1.3.2:
- resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+ error-ex@1.3.4:
+ resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
- es-abstract@1.23.5:
- resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==}
+ es-abstract@1.24.1:
+ resolution: {integrity: sha512-zHXBLhP+QehSSbsS9Pt23Gg964240DPd6QCf8WpkqEXxQ7fhdZzYsocOr5u7apWonsS5EjZDmTF+/slGMyasvw==}
engines: {node: '>= 0.4'}
- es-check@9.0.0:
- resolution: {integrity: sha512-lxqD7bpt/LwXUlKkCldWXhy7mgWoWUO3eMihCKqh4BR2BnUtSNlndzaWUmKNEo2LhwEhXnFzwXgGqoaWnuDPYg==}
- engines: {node: '>= 4'}
+ es-check@9.6.1:
+ resolution: {integrity: sha512-XdEB5FV2n3EQrKcNssckee8UzrtezojxxQ7cvzQ/LYNOicKovYI1wxveniAFhe6N8sNglaMXvJqCEAMftkCqpA==}
+ engines: {node: '>=18.0.0', pnpm: '>=9.0.0'}
hasBin: true
- es-define-property@1.0.0:
- resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
- engines: {node: '>= 0.4'}
-
es-define-property@1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
@@ -8773,28 +8690,24 @@ packages:
es-get-iterator@1.1.3:
resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
- es-object-atoms@1.0.0:
- resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
- engines: {node: '>= 0.4'}
-
es-object-atoms@1.1.1:
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
engines: {node: '>= 0.4'}
- es-set-tostringtag@2.0.3:
- resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
- engines: {node: '>= 0.4'}
-
es-set-tostringtag@2.1.0:
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
engines: {node: '>= 0.4'}
+ es-shim-unscopables@1.1.0:
+ resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==}
+ engines: {node: '>= 0.4'}
+
es-to-primitive@1.3.0:
resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
engines: {node: '>= 0.4'}
- esbuild@0.25.3:
- resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==}
+ esbuild@0.27.3:
+ resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
engines: {node: '>=18'}
hasBin: true
@@ -8825,8 +8738,8 @@ packages:
peerDependencies:
eslint: '>=7.0.0'
- eslint-plugin-prettier@5.5.3:
- resolution: {integrity: sha512-NAdMYww51ehKfDyDhv59/eIItUVzU0Io9H2E8nHNGKEeeqlnci+1gCvrHib6EmZdf6GxF+LCV5K7UC65Ezvw7w==}
+ eslint-plugin-prettier@5.5.5:
+ resolution: {integrity: sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
'@types/eslint': '>=8.0.0'
@@ -8839,25 +8752,25 @@ packages:
eslint-config-prettier:
optional: true
- eslint-scope@8.4.0:
- resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ eslint-scope@9.1.1:
+ resolution: {integrity: sha512-GaUN0sWim5qc8KVErfPBWmc31LEsOkrUJbvJZV+xuL3u2phMUK4HIvXlWAakfC8W4nzlK+chPEAkYOYb5ZScIw==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint-visitor-keys@4.2.0:
- resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
eslint-visitor-keys@4.2.1:
resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.31.0:
- resolution: {integrity: sha512-QldCVh/ztyKJJZLr4jXNUByx3gR+TDYZCRXEktiZoUR3PGy4qCmSbkxcIle8GEwGpb5JBZazlaJ/CxLidXdEbQ==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ eslint-visitor-keys@5.0.1:
+ resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+
+ eslint@10.0.2:
+ resolution: {integrity: sha512-uYixubwmqJZH+KLVYIVKY1JQt7tysXhtj21WSvjcSmU5SVNzMus1bgLe+pAt816yQ8opKfheVVoPLqvVMGejYw==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
hasBin: true
peerDependencies:
jiti: '*'
@@ -8869,21 +8782,21 @@ packages:
resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
engines: {node: '>=6'}
- espree@10.3.0:
- resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
- engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
-
espree@10.4.0:
resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ espree@11.1.1:
+ resolution: {integrity: sha512-AVHPqQoZYc+RUM4/3Ly5udlZY/U4LS8pIG05jEjWM2lQMU/oaZ7qshzAl2YP1tfNmXfftH3ohurfwNAug+MnsQ==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+
esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
- esquery@1.6.0:
- resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
+ esquery@1.7.0:
+ resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==}
engines: {node: '>=0.10'}
esrecurse@4.3.0:
@@ -8904,19 +8817,15 @@ packages:
eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
- eventemitter3@5.0.1:
- resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
+ eventemitter3@5.0.4:
+ resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
execa@5.0.0:
resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==}
engines: {node: '>=10'}
- execa@8.0.1:
- resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
- engines: {node: '>=16.17'}
-
- exponential-backoff@3.1.1:
- resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
+ exponential-backoff@3.1.3:
+ resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==}
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
@@ -8927,10 +8836,6 @@ packages:
fast-diff@1.3.0:
resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
- fast-glob@3.3.2:
- resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
- engines: {node: '>=8.6.0'}
-
fast-glob@3.3.3:
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
engines: {node: '>=8.6.0'}
@@ -8941,20 +8846,18 @@ packages:
fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
- fastq@1.15.0:
- resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
+ fastq@1.20.1:
+ resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
- fdir@6.4.4:
- resolution: {integrity: sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==}
+ fdir@6.5.0:
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
+ engines: {node: '>=12.0.0'}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
picomatch:
optional: true
- fecha@4.2.3:
- resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==}
-
figures@3.2.0:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
@@ -8963,11 +8866,11 @@ packages:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
- filelist@1.0.4:
- resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==}
+ filelist@1.0.6:
+ resolution: {integrity: sha512-5giy2PkLYY1cP39p17Ech+2xlpTRL9HLspOfEgm0L6CwBXBTgsK5ou0JtzYuepxkaQ/tvhCFIJ5uXo0OrM2DxA==}
- filing-cabinet@5.0.3:
- resolution: {integrity: sha512-PlPcMwVWg60NQkhvfoxZs4wEHjhlOO/y7OAm4sKM60o1Z9nttRY4mcdQxp/iZ+kg/Vv6Hw1OAaTbYVM9DA9pYg==}
+ filing-cabinet@5.1.0:
+ resolution: {integrity: sha512-xA3nKuR0N762AtUloSEbq4T+tOqNf1rZ3vgPW8Sijurqz9rvArjTpZhfrV1OxSrhX6OUoDGAONXo6liKZTNXKQ==}
engines: {node: '>=18'}
hasBin: true
@@ -8999,6 +8902,9 @@ packages:
resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==}
engines: {node: '>=18'}
+ fix-dts-default-cjs-exports@1.0.1:
+ resolution: {integrity: sha512-pVIECanWFC61Hzl2+oOCtoJ3F17kglZC/6N94eRWycFgBH35hHx0Li604ZIzhseh97mf2p0cv7vVrOZGoqhlEg==}
+
flat-cache@4.0.1:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
@@ -9007,14 +8913,11 @@ packages:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
- flatted@3.3.2:
- resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
-
- fn.name@1.1.0:
- resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==}
+ flatted@3.3.3:
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
- follow-redirects@1.15.6:
- resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
+ follow-redirects@1.15.11:
+ resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -9022,8 +8925,9 @@ packages:
debug:
optional: true
- for-each@0.3.3:
- resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ for-each@0.3.5:
+ resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
+ engines: {node: '>= 0.4'}
foreground-child@3.3.1:
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
@@ -9039,14 +8943,10 @@ packages:
fs-constants@1.0.0:
resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
- fs-extra@11.3.0:
- resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==}
+ fs-extra@11.3.3:
+ resolution: {integrity: sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==}
engines: {node: '>=14.14'}
- fs-minipass@2.1.0:
- resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
- engines: {node: '>= 8'}
-
fs-minipass@3.0.3:
resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -9062,13 +8962,17 @@ packages:
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- function.prototype.name@1.1.6:
- resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
+ function.prototype.name@1.1.8:
+ resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
engines: {node: '>= 0.4'}
functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ generator-function@2.0.1:
+ resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
+ engines: {node: '>= 0.4'}
+
gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
@@ -9076,8 +8980,8 @@ packages:
geojson-equality-ts@1.0.2:
resolution: {integrity: sha512-h3Ryq+0mCSN/7yLs0eDgrZhvc9af23o/QuC4aTiuuzP/MRCtd6mf5rLsLRY44jX0RPUfM8c4GqERQmlUxPGPoQ==}
- geojson-polygon-self-intersections@1.2.1:
- resolution: {integrity: sha512-/QM1b5u2d172qQVO//9CGRa49jEmclKEsYOQmWP9ooEjj63tBM51m2805xsbxkzlEELQ2REgTf700gUhhlegxA==}
+ geojson-polygon-self-intersections@3.0.0:
+ resolution: {integrity: sha512-MAFUwdy0qp3uJzuUWA87yqPlFQXOc7AMph8fy1/4zEe3d+iV/2U8O5gzVpdG7FXPvUl7sgmfIASYD7iN52dh1Q==}
geokdbush@2.0.1:
resolution: {integrity: sha512-0M8so1Qx6+jJ1xpirpCNrgUsWAzIcQ3LrLmh0KJPBYI3gH7vy70nY5zEEjSp9Tn0nBt6Q2Fh922oL08lfib4Zg==}
@@ -9090,14 +8994,10 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.3.0:
- resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
+ get-east-asian-width@1.5.0:
+ resolution: {integrity: sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==}
engines: {node: '>=18'}
- get-intrinsic@1.2.4:
- resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
- engines: {node: '>= 0.4'}
-
get-intrinsic@1.3.0:
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
@@ -9126,20 +9026,12 @@ packages:
resolution: {integrity: sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==}
engines: {node: '>=10'}
- get-stream@6.0.1:
- resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
- engines: {node: '>=10'}
-
- get-stream@8.0.1:
- resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
- engines: {node: '>=16'}
-
- get-symbol-description@1.0.2:
- resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
+ get-symbol-description@1.1.0:
+ resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
engines: {node: '>= 0.4'}
- get-tsconfig@4.8.1:
- resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
+ get-tsconfig@4.13.6:
+ resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
git-raw-commits@3.0.0:
resolution: {integrity: sha512-b5OHmZ3vAgGrDn/X0kS+9qCfNKWe4K/jFnhwzVWWg0/k5eLa3060tZShrRg8Dja5kPc+YjS0Gc6y7cRr44Lpjw==}
@@ -9158,8 +9050,8 @@ packages:
git-up@7.0.0:
resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==}
- git-url-parse@13.1.0:
- resolution: {integrity: sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==}
+ git-url-parse@13.1.1:
+ resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==}
git-url-parse@14.0.0:
resolution: {integrity: sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==}
@@ -9181,20 +9073,15 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
- glob@10.5.0:
- resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==}
- deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
- hasBin: true
-
glob@11.1.0:
resolution: {integrity: sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==}
engines: {node: 20 || >=22}
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
hasBin: true
- glob@13.0.0:
- resolution: {integrity: sha512-tvZgpqk6fz4BaNZ66ZsRaZnbHvP/jG3uKJvAZOwEVUL4RTA5nJeeLYfyN9/VA8NX/V3IBG+hkeuGpKjvELkVhA==}
- engines: {node: 20 || >=22}
+ glob@13.0.6:
+ resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==}
+ engines: {node: 18 || 20 || >=22}
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
@@ -9205,32 +9092,23 @@ packages:
engines: {node: '>=12'}
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
- glob@9.3.5:
- resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
- engines: {node: '>=16 || 14 >=14.17'}
- deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
-
globals-docs@2.4.1:
resolution: {integrity: sha512-qpPnUKkWnz8NESjrCvnlGklsgiQzlq+rcCxoG5uNQ+dNA7cFMCmn231slLAwS2N/PlkzZ3COL8CcS10jXmLHqg==}
- globals@11.12.0:
- resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
- engines: {node: '>=4'}
-
globals@14.0.0:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- globals@16.0.0:
- resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==}
+ globals@17.3.0:
+ resolution: {integrity: sha512-yMqGUQVVCkD4tqjOJf3TnrvaaHDMYp4VlUSObbkIiuCPe/ofdMBFIAcBbCSRFWOnos6qRiTVStDwqPLUclaxIw==}
engines: {node: '>=18'}
globalthis@1.0.4:
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
- globby@14.0.2:
- resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
+ globby@14.1.0:
+ resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==}
engines: {node: '>=18'}
gonzales-pe@4.3.0:
@@ -9238,10 +9116,6 @@ packages:
engines: {node: '>=0.6.0'}
hasBin: true
- gopd@1.1.0:
- resolution: {integrity: sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA==}
- engines: {node: '>= 0.4'}
-
gopd@1.2.0:
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
engines: {node: '>= 0.4'}
@@ -9249,9 +9123,6 @@ packages:
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- graphemer@1.4.0:
- resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
-
handlebars@4.7.8:
resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==}
engines: {node: '>=0.4.7'}
@@ -9261,11 +9132,12 @@ packages:
resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
engines: {node: '>=6'}
- has-bigints@1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+ has-bigints@1.1.0:
+ resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
+ engines: {node: '>= 0.4'}
- has-dynamic-import@2.1.0:
- resolution: {integrity: sha512-su0anMkNEnJKZ/rB99jn3y6lV/J8Ro96hBJ28YAeVzj5rWxH+YL/AdCyiYYA1HDLV9YhmvqpWSJJj2KLo1MX6g==}
+ has-dynamic-import@2.1.1:
+ resolution: {integrity: sha512-DuTCn6K/RW8S27npDMumGKsjG6HE7MxzedZka5tJP+9dqfxks+UMqKBmeCijHtIhsBEZPlbMg0qMHi2nKYVtKQ==}
engines: {node: '>= 0.4'}
has-flag@4.0.0:
@@ -9275,8 +9147,8 @@ packages:
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-proto@1.1.0:
- resolution: {integrity: sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q==}
+ has-proto@1.2.0:
+ resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
engines: {node: '>= 0.4'}
has-symbols@1.1.0:
@@ -9322,8 +9194,8 @@ packages:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
- highlight.js@11.10.0:
- resolution: {integrity: sha512-SYVnVFswQER+zu1laSya563s+F8VDGt7o35d4utbamowvUNLLMovFqwCLSocpZTz3MgaSRA1IbqRWZv97dtErQ==}
+ highlight.js@11.11.1:
+ resolution: {integrity: sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==}
engines: {node: '>=12.0.0'}
hosted-git-info@2.8.9:
@@ -9344,25 +9216,21 @@ packages:
html-void-elements@2.0.1:
resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==}
- http-cache-semantics@4.1.1:
- resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
+ http-cache-semantics@4.2.0:
+ resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==}
http-proxy-agent@7.0.2:
resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
engines: {node: '>= 14'}
- https-proxy-agent@7.0.4:
- resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==}
+ https-proxy-agent@7.0.6:
+ resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
engines: {node: '>= 14'}
human-signals@2.1.0:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- human-signals@5.0.0:
- resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
- engines: {node: '>=16.17.0'}
-
husky@9.1.7:
resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==}
engines: {node: '>=18'}
@@ -9372,8 +9240,8 @@ packages:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
- iconv-lite@0.7.0:
- resolution: {integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==}
+ iconv-lite@0.7.2:
+ resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==}
engines: {node: '>=0.10.0'}
ieee754@1.2.1:
@@ -9391,8 +9259,8 @@ packages:
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
engines: {node: '>= 4'}
- import-fresh@3.3.0:
- resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ import-fresh@3.3.1:
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
import-local@3.1.0:
@@ -9443,33 +9311,35 @@ packages:
'@types/node':
optional: true
- internal-slot@1.0.7:
- resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
+ internal-slot@1.1.0:
+ resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
- ip@2.0.1:
- resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==}
+ internmap@2.0.3:
+ resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
+ engines: {node: '>=12'}
+
+ ip-address@10.1.0:
+ resolution: {integrity: sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==}
+ engines: {node: '>= 12'}
is-absolute@1.0.0:
resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==}
engines: {node: '>=0.10.0'}
- is-arguments@1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
+ is-arguments@1.2.0:
+ resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==}
engines: {node: '>= 0.4'}
- is-array-buffer@3.0.4:
- resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
+ is-array-buffer@3.0.5:
+ resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
engines: {node: '>= 0.4'}
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- is-arrayish@0.3.2:
- resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
-
- is-async-function@2.0.0:
- resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
+ is-async-function@2.1.1:
+ resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
engines: {node: '>= 0.4'}
is-bigint@1.1.0:
@@ -9480,8 +9350,8 @@ packages:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
- is-boolean-object@1.2.0:
- resolution: {integrity: sha512-kR5g0+dXf/+kXnqI+lu0URKYPKgICtHGGNCDSB10AaUFj3o/HkB3u7WfpRBJGFopxxY0oH3ux7ZsDjLtK7xqvw==}
+ is-boolean-object@1.2.2:
+ resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
engines: {node: '>= 0.4'}
is-buffer@2.0.5:
@@ -9496,19 +9366,16 @@ packages:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
- is-core-module@2.13.1:
- resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
-
is-core-module@2.16.1:
resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
engines: {node: '>= 0.4'}
- is-data-view@1.0.1:
- resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
+ is-data-view@1.0.2:
+ resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
engines: {node: '>= 0.4'}
- is-date-object@1.0.5:
- resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
+ is-date-object@1.1.0:
+ resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
engines: {node: '>= 0.4'}
is-docker@2.2.1:
@@ -9520,24 +9387,20 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- is-finalizationregistry@1.1.0:
- resolution: {integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==}
+ is-finalizationregistry@1.1.1:
+ resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
engines: {node: '>= 0.4'}
is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- is-fullwidth-code-point@4.0.0:
- resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==}
- engines: {node: '>=12'}
-
- is-fullwidth-code-point@5.0.0:
- resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==}
+ is-fullwidth-code-point@5.1.0:
+ resolution: {integrity: sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==}
engines: {node: '>=18'}
- is-generator-function@1.0.10:
- resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
+ is-generator-function@1.1.2:
+ resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==}
engines: {node: '>= 0.4'}
is-glob@4.0.3:
@@ -9559,8 +9422,8 @@ packages:
resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
engines: {node: '>= 0.4'}
- is-number-object@1.1.0:
- resolution: {integrity: sha512-KVSZV0Dunv9DTPkhXwcZ3Q+tUc9TsaE1ZwX5J2WMvsSGS6Md8TFPun5uwh0yRdrNerI6vf/tbJxqSx4c1ZI1Lw==}
+ is-number-object@1.1.1:
+ resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
engines: {node: '>= 0.4'}
is-number@7.0.0:
@@ -9590,8 +9453,8 @@ packages:
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
- is-regex@1.1.4:
- resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
+ is-regex@1.2.1:
+ resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
engines: {node: '>= 0.4'}
is-regexp@1.0.0:
@@ -9606,39 +9469,31 @@ packages:
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
engines: {node: '>= 0.4'}
- is-shared-array-buffer@1.0.3:
- resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
+ is-shared-array-buffer@1.0.4:
+ resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
engines: {node: '>= 0.4'}
- is-ssh@1.4.0:
- resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==}
+ is-ssh@1.4.1:
+ resolution: {integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==}
is-stream@2.0.0:
resolution: {integrity: sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==}
engines: {node: '>=8'}
- is-stream@2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
- engines: {node: '>=8'}
-
- is-stream@3.0.0:
- resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- is-string@1.1.0:
- resolution: {integrity: sha512-PlfzajuF9vSo5wErv3MJAKD/nqf9ngAs1NFQYm16nUYFO2IzxJ2hcm+IOCg+EEopdykNNUhVq5cz35cAUxU8+g==}
+ is-string@1.1.1:
+ resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
engines: {node: '>= 0.4'}
- is-symbol@1.1.0:
- resolution: {integrity: sha512-qS8KkNNXUZ/I+nX6QT8ZS1/Yx0A444yhzdTKxCzKkNjQ9sHErBxJnJAgh+f5YhusYECEcjo4XcyH87hn6+ks0A==}
+ is-symbol@1.1.1:
+ resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
engines: {node: '>= 0.4'}
is-text-path@1.0.1:
resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==}
engines: {node: '>=0.10.0'}
- is-typed-array@1.1.13:
- resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
+ is-typed-array@1.1.15:
+ resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
engines: {node: '>= 0.4'}
is-typedarray@1.0.0:
@@ -9663,11 +9518,12 @@ packages:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
- is-weakref@1.0.2:
- resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+ is-weakref@1.1.1:
+ resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
+ engines: {node: '>= 0.4'}
- is-weakset@2.0.3:
- resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
+ is-weakset@2.0.4:
+ resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
engines: {node: '>= 0.4'}
is-windows@1.0.2:
@@ -9687,34 +9543,27 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- isexe@3.1.1:
- resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
- engines: {node: '>=16'}
+ isexe@3.1.5:
+ resolution: {integrity: sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==}
+ engines: {node: '>=18'}
- jackspeak@3.4.3:
- resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
+ isexe@4.0.0:
+ resolution: {integrity: sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==}
+ engines: {node: '>=20'}
- jackspeak@4.1.1:
- resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==}
+ jackspeak@4.2.3:
+ resolution: {integrity: sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==}
engines: {node: 20 || >=22}
- jake@10.8.7:
- resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==}
+ jake@10.9.4:
+ resolution: {integrity: sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==}
engines: {node: '>=10'}
hasBin: true
- jest-diff@29.7.0:
- resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
jest-diff@30.2.0:
resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-get-type@29.6.3:
- resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
joycon@3.1.1:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
engines: {node: '>=10'}
@@ -9730,11 +9579,6 @@ packages:
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
hasBin: true
- jsesc@3.0.2:
- resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
- engines: {node: '>=6'}
- hasBin: true
-
jsesc@3.1.0:
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
engines: {node: '>=6'}
@@ -9777,8 +9621,8 @@ packages:
jsonc-parser@3.2.0:
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
- jsonfile@6.1.0:
- resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
+ jsonfile@6.2.0:
+ resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
jsonparse@1.3.1:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
@@ -9815,11 +9659,8 @@ packages:
konan@2.1.1:
resolution: {integrity: sha512-7ZhYV84UzJ0PR/RJnnsMZcAbn+kLasJhVNWsu8ZyVEJYRpGA5XESQ9d/7zOa08U0Ou4cmB++hMNY/3OSV9KIbg==}
- kuler@2.0.0:
- resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==}
-
- lerna@9.0.3:
- resolution: {integrity: sha512-wCsJWKX8FaGJoWX2K5gL5q7ReqQNxNsS92AW5glBe/JzWEtoM/jgXXGrEzQzORMb8rTXYFjUjpn60et+i8XugA==}
+ lerna@9.0.4:
+ resolution: {integrity: sha512-wKy9TOkkdCWPWET0R5o7mh7J0KuNNjxE0g+qTruNAt5ffWwy54wfWiJtWyDSMOrcGDt6gtisDBTKniOqK/sJvw==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
hasBin: true
@@ -9846,14 +9687,14 @@ packages:
resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- lint-staged@15.5.1:
- resolution: {integrity: sha512-6m7u8mue4Xn6wK6gZvSCQwBvMBR36xfY24nF5bMTf2MHDYG6S3yhJuOgdYVw99hsjyDt2d4z168b3naI8+NWtQ==}
- engines: {node: '>=18.12.0'}
+ lint-staged@16.2.7:
+ resolution: {integrity: sha512-lDIj4RnYmK7/kXMya+qJsmkRFkGolciXjrsZ6PC25GdTfWOAWetR0ZbsNXRAj1EHHImRSalc+whZFg56F5DVow==}
+ engines: {node: '>=20.17'}
hasBin: true
- listr2@8.3.2:
- resolution: {integrity: sha512-vsBzcU4oE+v0lj4FhVLzr9dBTv4/fHIa57l+GCwovP8MoFNZJTOhGU8PXd4v2VJCbECAaijBiHntiekFMLvo0g==}
- engines: {node: '>=18.0.0'}
+ listr2@9.0.5:
+ resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
+ engines: {node: '>=20.0.0'}
load-json-file@4.0.0:
resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
@@ -9893,14 +9734,8 @@ packages:
lodash.ismatch@4.4.0:
resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==}
- lodash.merge@4.6.2:
- resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
-
- lodash.sortby@4.7.0:
- resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
-
- lodash@4.17.21:
- resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
+ lodash@4.17.23:
+ resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
log-symbols@4.1.0:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
@@ -9910,22 +9745,14 @@ packages:
resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
engines: {node: '>=18'}
- logform@2.7.0:
- resolution: {integrity: sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==}
- engines: {node: '>= 12.0.0'}
-
longest-streak@3.1.0:
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lru-cache@11.1.0:
- resolution: {integrity: sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==}
- engines: {node: 20 || >=22}
-
- lru-cache@11.2.2:
- resolution: {integrity: sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==}
+ lru-cache@11.2.6:
+ resolution: {integrity: sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==}
engines: {node: 20 || >=22}
lru-cache@5.1.1:
@@ -9935,11 +9762,8 @@ packages:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
- magic-string@0.30.14:
- resolution: {integrity: sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw==}
-
- magic-string@0.30.17:
- resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
+ magic-string@0.30.21:
+ resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
@@ -9949,14 +9773,14 @@ packages:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
- make-fetch-happen@14.0.3:
- resolution: {integrity: sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
make-fetch-happen@15.0.2:
resolution: {integrity: sha512-sI1NY4lWlXBAfjmCtVWIIpBypbBdhHtcjnwnv+gtCnsaOffyFil3aidszGC8hgzJe+fT1qix05sWxmD/Bmf/oQ==}
engines: {node: ^20.17.0 || >=22.9.0}
+ make-fetch-happen@15.0.4:
+ resolution: {integrity: sha512-vM2sG+wbVeVGYcCm16mM3d5fuem9oC28n436HjsGO3LcxoTI8LNVa4rwZDn3f76+cWyT4GGJDxjTYU1I2nr6zw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
map-cache@0.2.2:
resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
engines: {node: '>=0.10.0'}
@@ -9969,8 +9793,8 @@ packages:
resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==}
engines: {node: '>=8'}
- markdown-table@3.0.3:
- resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==}
+ markdown-table@3.0.4:
+ resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
math-intrinsics@1.1.0:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
@@ -10024,9 +9848,9 @@ packages:
mdast-util-toc@6.1.1:
resolution: {integrity: sha512-Er21728Kow8hehecK2GZtb7Ny3omcoPUVrmObiSUwmoRYVZaXLR751QROEFjR8W/vAQdHMLj49Lz20J55XaNpw==}
- meow@13.2.0:
- resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
- engines: {node: '>=18'}
+ meow@14.1.0:
+ resolution: {integrity: sha512-EDYo6VlmtnumlcBCbh1gLJ//9jvM/ndXHfVXIFrZVr6fGcwTUyCTFNTLCKuY3ffbK8L/+3Mzqnd58RojiZqHVw==}
+ engines: {node: '>=20'}
meow@8.1.2:
resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==}
@@ -10142,10 +9966,6 @@ packages:
resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
engines: {node: '>=6'}
- mimic-fn@4.0.0:
- resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
- engines: {node: '>=12'}
-
mimic-function@5.0.1:
resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
engines: {node: '>=18'}
@@ -10158,28 +9978,20 @@ packages:
resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==}
engines: {node: 20 || >=22}
+ minimatch@10.2.4:
+ resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
+ engines: {node: 18 || 20 || >=22}
+
minimatch@3.0.5:
resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==}
- minimatch@3.1.2:
- resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
+ minimatch@3.1.5:
+ resolution: {integrity: sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==}
- minimatch@5.1.6:
- resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
+ minimatch@5.1.9:
+ resolution: {integrity: sha512-7o1wEA2RyMP7Iu7GNba9vc0RWWGACJOCZBJX2GJWip0ikV+wcOsgVuY9uE8CPiyQhkGFSlhuSkZPavN7u1c2Fw==}
engines: {node: '>=10'}
- minimatch@8.0.4:
- resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==}
- engines: {node: '>=16 || 14 >=14.17'}
-
- minimatch@9.0.3:
- resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
- engines: {node: '>=16 || 14 >=14.17'}
-
- minimatch@9.0.5:
- resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
- engines: {node: '>=16 || 14 >=14.17'}
-
minimist-options@4.1.0:
resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
engines: {node: '>= 6'}
@@ -10195,6 +10007,10 @@ packages:
resolution: {integrity: sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==}
engines: {node: ^18.17.0 || >=20.5.0}
+ minipass-fetch@5.0.2:
+ resolution: {integrity: sha512-2d0q2a8eCi2IRg/IGubCNRJoYbA1+YPXAzQVRFmB45gdGZafyivnZ5YSEfo3JikbjGxOdntGFvBQGqaSMXlAFQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
minipass-flush@1.0.5:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
engines: {node: '>= 8'}
@@ -10207,40 +10023,30 @@ packages:
resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
engines: {node: '>=8'}
- minipass@3.3.6:
- resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
- engines: {node: '>=8'}
-
- minipass@4.2.8:
- resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==}
+ minipass-sized@2.0.0:
+ resolution: {integrity: sha512-zSsHhto5BcUVM2m1LurnXY6M//cGhVaegT71OfOXoprxT6o780GZd792ea6FfrQkuU4usHZIUczAQMRUE2plzA==}
engines: {node: '>=8'}
- minipass@5.0.0:
- resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
+ minipass@3.3.6:
+ resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
- minipass@7.1.2:
- resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ minipass@7.1.3:
+ resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
engines: {node: '>=16 || 14 >=14.17'}
- minizlib@2.1.2:
- resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
- engines: {node: '>= 8'}
-
minizlib@3.1.0:
resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
engines: {node: '>= 18'}
- mkdirp@1.0.4:
- resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
- engines: {node: '>=10'}
- hasBin: true
-
mkdirp@3.0.1:
resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
engines: {node: '>=10'}
hasBin: true
+ mlly@1.8.0:
+ resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==}
+
mock-property@1.1.0:
resolution: {integrity: sha512-1/JjbLoGwv87xVsutkX0XJc0M0W4kb40cZl/K41xtTViBOD9JuFPKfyMNTrLJ/ivYAd0aPqu/vduamXO0emTFQ==}
engines: {node: '>= 0.4'}
@@ -10254,8 +10060,8 @@ packages:
engines: {node: '>=18'}
hasBin: true
- module-lookup-amd@9.0.4:
- resolution: {integrity: sha512-DWJEuLVvjxh5b8wrvJC5wr2a7qo7pOWXIgdCBNazU416kcIyzO4drxvlqKhsHzYwxcC4cWuhoK+MiWCKCGnv7A==}
+ module-lookup-amd@9.1.1:
+ resolution: {integrity: sha512-JzXhQvud8K3yT9l24XTDMXMQ4/LD9a9oXBcbLP0ubdvBpVrGFsybm5+2PDIl0negUYP1l88fCgjQzoMMg247+Q==}
engines: {node: '>=18'}
hasBin: true
@@ -10277,16 +10083,15 @@ packages:
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
+ nano-spawn@2.0.0:
+ resolution: {integrity: sha512-tacvGzUY5o2D8CBh2rrwxyNojUsZNU2zjNTzKQrkgGJQTbGAfArVWXSKMBokBeeg6C7OLRGUEyoFlYbfeWQIqw==}
+ engines: {node: '>=20.17'}
+
nanoid@3.3.11:
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@3.3.8:
- resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
-
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
@@ -10297,16 +10102,20 @@ packages:
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- node-gyp@11.5.0:
- resolution: {integrity: sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ node-exports-info@1.6.0:
+ resolution: {integrity: sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==}
+ engines: {node: '>= 0.4'}
+
+ node-gyp@12.2.0:
+ resolution: {integrity: sha512-q23WdzrQv48KozXlr0U1v9dwO/k59NHeSzn6loGcasyf0UnSrtzs8kRxM+mfwJSf0DkX0s43hcqgnSO4/VNthQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
node-machine-id@1.1.12:
resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
- node-releases@2.0.19:
- resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
+ node-releases@2.0.27:
+ resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
node-source-walk@7.0.1:
resolution: {integrity: sha512-3VW/8JpPqPvnJvseXowjZcirPisssnBuDikk6JIZ8jQzF7KJQX52iPFX4RYYxLycYH7IbMRSPUOga/esVjy5Yg==}
@@ -10317,6 +10126,11 @@ packages:
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
+ nopt@9.0.0:
+ resolution: {integrity: sha512-Zhq3a+yFKrYwSBluL4H9XP3m3y5uvQkB/09CwDruCiRmR/UJYnn9W4R48ry0uGC70aeTPKLynBtscP9efFFcPw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+ hasBin: true
+
normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
@@ -10380,16 +10194,12 @@ packages:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
- npm-run-path@5.1.0:
- resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- nx@22.1.3:
- resolution: {integrity: sha512-8zS/jhz1ZYSlW3tDEkqIA3oXaS/BTnpuFNV6L3tGKAaIxdn1sD5BuOdxIVK+G/TaoxOhw2iKrGiZeSSpV7fILw==}
+ nx@22.5.2:
+ resolution: {integrity: sha512-s7dd2BZQOremv1AYhxwBY6NzJV9ETa6/OJ/zau/ulbLnHu8E5UAv+EjMC80m3qP3nob5OXnWiITKM9CcOHy6qw==}
hasBin: true
peerDependencies:
- '@swc-node/register': ^1.8.0
- '@swc/core': ^1.3.85
+ '@swc-node/register': ^1.11.1
+ '@swc/core': ^1.15.8
peerDependenciesMeta:
'@swc-node/register':
optional: true
@@ -10400,8 +10210,8 @@ packages:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- object-inspect@1.13.3:
- resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
+ object-inspect@1.13.4:
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
object-is@1.1.6:
@@ -10412,24 +10222,21 @@ packages:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
- object.assign@4.1.5:
- resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
+ object.assign@4.1.7:
+ resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
+ engines: {node: '>= 0.4'}
+
+ object.entries@1.1.9:
+ resolution: {integrity: sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==}
engines: {node: '>= 0.4'}
once@1.4.0:
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
- one-time@1.0.0:
- resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==}
-
onetime@5.1.2:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
- onetime@6.0.0:
- resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
- engines: {node: '>=12'}
-
onetime@7.0.0:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
@@ -10446,6 +10253,10 @@ packages:
resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==}
engines: {node: '>=10'}
+ own-keys@1.0.1:
+ resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
+ engines: {node: '>= 0.4'}
+
p-filter@2.1.0:
resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
engines: {node: '>=8'}
@@ -10538,8 +10349,8 @@ packages:
engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
- pacote@21.0.4:
- resolution: {integrity: sha512-RplP/pDW0NNNDh3pnaoIWYPvNenS7UqMbXyvMqJczosiFWTeGGwJC2NQBLqKf4rGLFfwCOnntw1aEp9Jiqm1MA==}
+ pacote@21.4.0:
+ resolution: {integrity: sha512-DR7mn7HUOomAX1BORnpYy678qVIidbvOojkBscqy27dRKN+s/hLeQT1MeYYrx1Cxh62jyKjiWiDV7RTTqB+ZEQ==}
engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
@@ -10563,8 +10374,8 @@ packages:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
- parse-path@7.0.0:
- resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==}
+ parse-path@7.1.0:
+ resolution: {integrity: sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw==}
parse-url@8.1.0:
resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==}
@@ -10592,10 +10403,6 @@ packages:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- path-key@4.0.0:
- resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
- engines: {node: '>=12'}
-
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
@@ -10607,21 +10414,20 @@ packages:
resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==}
engines: {node: '>=0.10.0'}
- path-scurry@1.11.1:
- resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
- engines: {node: '>=16 || 14 >=14.18'}
-
- path-scurry@2.0.0:
- resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
- engines: {node: 20 || >=22}
+ path-scurry@2.0.2:
+ resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
+ engines: {node: 18 || 20 || >=22}
path-type@3.0.0:
resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
engines: {node: '>=4'}
- path-type@5.0.0:
- resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
- engines: {node: '>=12'}
+ path-type@6.0.0:
+ resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==}
+ engines: {node: '>=18'}
+
+ pathe@2.0.3:
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
@@ -10630,8 +10436,8 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- picomatch@4.0.2:
- resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ picomatch@4.0.3:
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
engines: {node: '>=12'}
pidtree@0.6.0:
@@ -10659,19 +10465,22 @@ packages:
resolution: {integrity: sha512-KocF8ve28eFjjuBKKGvzOBGzG8ew2OqOOSxTTZhirkzH7h3BI1vyzqlR0qbfcDBve1Yzo3FVlWUAtCRrbVN8Fw==}
engines: {node: '>=14.16'}
- pirates@4.0.6:
- resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
+ pirates@4.0.7:
+ resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
engines: {node: '>= 6'}
pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
+ pkg-types@1.3.1:
+ resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
+
platform@1.3.6:
resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==}
- point-in-polygon-hao@1.1.0:
- resolution: {integrity: sha512-3hTIM2j/v9Lio+wOyur3kckD4NxruZhpowUbEgmyikW+a2Kppjtu1eN+AhnMQtoHW46zld88JiYWv6fxpsDrTQ==}
+ point-in-polygon-hao@1.2.4:
+ resolution: {integrity: sha512-x2pcvXeqhRHlNRdhLs/tgFapAbSSe86wa/eqmj1G6pWftbEs5aVRJhRGM6FYSUERKu0PjekJzMq0gsI2XyiclQ==}
point-in-polygon@1.1.0:
resolution: {integrity: sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==}
@@ -10679,8 +10488,8 @@ packages:
polyclip-ts@0.16.8:
resolution: {integrity: sha512-JPtKbDRuPEuAjuTdhR62Gph7Is2BS1Szx69CFOO3g71lpJDFo78k4tFyi+qFOMVPePEzdSKkpGU3NBXPHHjvKQ==}
- possible-typed-array-names@1.0.0:
- resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
+ possible-typed-array-names@1.1.0:
+ resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
engines: {node: '>= 0.4'}
postcss-load-config@6.0.1:
@@ -10711,12 +10520,8 @@ packages:
peerDependencies:
postcss: ^8.2.9
- postcss@8.4.49:
- resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
- engines: {node: ^10 || ^12 || >=14}
-
- postcss@8.5.3:
- resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
+ postcss@8.5.6:
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
engines: {node: ^10 || ^12 || >=14}
precinct@12.2.0:
@@ -10728,19 +10533,15 @@ packages:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
- prettier-linter-helpers@1.0.0:
- resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
+ prettier-linter-helpers@1.0.1:
+ resolution: {integrity: sha512-SxToR7P8Y2lWmv/kTzVLC1t/GDI2WGjMwNhLLE9qtH8Q13C+aEmuRlzDst4Up4s0Wc8sF2M+J57iB3cMLqftfg==}
engines: {node: '>=6.0.0'}
- prettier@3.5.3:
- resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==}
+ prettier@3.8.1:
+ resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==}
engines: {node: '>=14'}
hasBin: true
- pretty-format@29.7.0:
- resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
pretty-format@30.2.0:
resolution: {integrity: sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
@@ -10764,8 +10565,8 @@ packages:
resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
engines: {node: '>=0.4.0'}
- proj4@2.9.2:
- resolution: {integrity: sha512-bdyfNmtlWjQN/rHEHEiqFvpTUHhuzDaeQ6Uu1G4sPGqk+Xkxae6ahh865fClJokSGPBmlDOQWWaO6465TCfv5Q==}
+ proj4@2.20.2:
+ resolution: {integrity: sha512-ipfBRfQly0HhHTO7hnC1GfaX8bvroO7VV4KH889ehmADSE8C/qzp2j+Jj6783S9Tj6c2qX/hhYm7oH0kgXzBAA==}
promise-all-reject-late@1.0.1:
resolution: {integrity: sha512-vuf0Lf0lOxyQREH7GDIOUMLS7kz+gs8i6B+Yi8dC68a2sychGrHTJYghMBD6k7eUcH0H5P73EckCA48xijWqXw==}
@@ -10784,8 +10585,8 @@ packages:
property-information@6.5.0:
resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==}
- protocols@2.0.1:
- resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==}
+ protocols@2.0.2:
+ resolution: {integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==}
proxy-from-env@1.1.0:
resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
@@ -10805,11 +10606,8 @@ packages:
resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
engines: {node: '>=8'}
- quickselect@1.1.1:
- resolution: {integrity: sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ==}
-
- quickselect@2.0.0:
- resolution: {integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==}
+ quickselect@3.0.0:
+ resolution: {integrity: sha512-XdjUArbK4Bm5fLLvlm5KpTFOiOThgfWWI4axAZDWg4E/0mKdZyI9tNEfds27qCi1ze/vwTR16kvmmGhRra3c2g==}
quote-unquote@1.0.0:
resolution: {integrity: sha512-twwRO/ilhlG/FIgYeKGFqyHhoEhqgnKVkcmqMKi2r524gz3ZbDTcyFt38E9xjJI2vT+KbRNHVbnJ/e0I25Azwg==}
@@ -10817,14 +10615,8 @@ packages:
randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
- rbush@2.0.2:
- resolution: {integrity: sha512-XBOuALcTm+O/H8G90b6pzu6nX6v2zCKiFG4BJho8a+bY6AER6t8uQUZdi5bomQc0AprCWhEGa7ncAbbRap0bRA==}
-
- rbush@3.0.1:
- resolution: {integrity: sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==}
-
- react-is@18.2.0:
- resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
+ rbush@4.0.1:
+ resolution: {integrity: sha512-IP0UpfeWQujYC8Jg162rMNc01Rf0gWMMAb2Uxus/Q0qOFw4lCcq6ZnQEZwUoJqWyUGJ9th7JjwI4yIWo+uvoAQ==}
react-is@18.3.1:
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
@@ -10888,36 +10680,30 @@ packages:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
- reflect.getprototypeof@1.0.7:
- resolution: {integrity: sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==}
+ reflect.getprototypeof@1.0.10:
+ resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
engines: {node: '>= 0.4'}
- regenerate-unicode-properties@10.2.0:
- resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
+ regenerate-unicode-properties@10.2.2:
+ resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==}
engines: {node: '>=4'}
regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- regenerator-runtime@0.14.1:
- resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
-
- regenerator-transform@0.15.2:
- resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
-
- regexp.prototype.flags@1.5.3:
- resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
+ regexp.prototype.flags@1.5.4:
+ resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
- regexpu-core@6.2.0:
- resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
+ regexpu-core@6.4.0:
+ resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==}
engines: {node: '>=4'}
regjsgen@0.8.0:
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
- regjsparser@0.12.0:
- resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
+ regjsparser@0.13.0:
+ resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==}
hasBin: true
remark-gfm@3.0.1:
@@ -10949,8 +10735,8 @@ packages:
resolution: {integrity: sha512-jnIre8cbWOyvr8a5F2KuqBnY+SDA4NXr/hzEZJG79Mxm2WiFQz2dzhC8ibtPJS7zkmBEl1mxSwp5HhC1W4qpxw==}
engines: {node: '>=10.13.0'}
- requirejs@2.3.7:
- resolution: {integrity: sha512-DouTG8T1WanGok6Qjg2SXuCMzszOo0eHeH9hDZ5Y4x8Je+9JB38HdTLT4/VA8OaUhBa0JPVHJ0pyBkM1z+pDsw==}
+ requirejs@2.3.8:
+ resolution: {integrity: sha512-7/cTSLOdYkNBNJcDMWf+luFvMriVm7eYxp4BcFCsAX0wF421Vyce5SXP17c+Jd5otXKGNehIonFlyQXSowL6Mw==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -10981,17 +10767,14 @@ packages:
resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
engines: {node: '>=10'}
- resolve@1.22.10:
- resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ resolve@1.22.11:
+ resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
engines: {node: '>= 0.4'}
hasBin: true
- resolve@1.22.8:
- resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
- hasBin: true
-
- resolve@2.0.0-next.5:
- resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
+ resolve@2.0.0-next.6:
+ resolution: {integrity: sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA==}
+ engines: {node: '>= 0.4'}
hasBin: true
restore-cursor@3.1.0:
@@ -11006,28 +10789,32 @@ packages:
resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
engines: {node: '>= 4'}
- reusify@1.0.4:
- resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
+ retry@0.13.1:
+ resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
+ engines: {node: '>= 4'}
+
+ reusify@1.1.0:
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
rfdc@1.4.1:
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
- rimraf@4.4.1:
- resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==}
- engines: {node: '>=14'}
+ rimraf@6.1.3:
+ resolution: {integrity: sha512-LKg+Cr2ZF61fkcaK1UdkH2yEBBKnYjTyWzTJT6KNPcSPaiT7HSdhtMXQuN5wkTX0Xu72KQ1l8S42rlmexS2hSA==}
+ engines: {node: 20 || >=22}
hasBin: true
- robust-predicates@2.0.4:
- resolution: {integrity: sha512-l4NwboJM74Ilm4VKfbAtFeGq7aEjWL+5kVFcmgFA2MrdnQWx9iE/tUGvxY5HyMI7o/WpSIUFLbC5fbeaHgSCYg==}
+ robust-predicates@3.0.2:
+ resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==}
rollup-plugin-polyfill-node@0.13.0:
resolution: {integrity: sha512-FYEvpCaD5jGtyBuBFcQImEGmTxDTPbiHjJdrYIp+mFIwgXiXabxvKUK7ZT9P31ozu2Tqm9llYQMRWsfvTMTAOw==}
peerDependencies:
rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0
- rollup@4.40.1:
- resolution: {integrity: sha512-C5VvvgCCyfyotVITIAv+4efVytl5F7wt+/I2i9q9GZcEXW9BP52YYOXC58igUi+LFZVHukErIIqQSWwv/M3WRw==}
+ rollup@4.59.0:
+ resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -11038,9 +10825,6 @@ packages:
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- runtypes@6.7.0:
- resolution: {integrity: sha512-3TLdfFX8YHNFOhwHrSJza6uxVBmBrEjnNQlNXvXCdItS0Pdskfg5vVXUTWIN+Y23QR09jWpSl99UHkA83m4uWA==}
-
rxjs@7.8.2:
resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
@@ -11048,8 +10832,8 @@ packages:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
- safe-array-concat@1.1.2:
- resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
+ safe-array-concat@1.1.3:
+ resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
engines: {node: '>=0.4'}
safe-buffer@5.1.2:
@@ -11058,13 +10842,13 @@ packages:
safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- safe-regex-test@1.0.3:
- resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
+ safe-push-apply@1.0.0:
+ resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
engines: {node: '>= 0.4'}
- safe-stable-stringify@2.5.0:
- resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
- engines: {node: '>=10'}
+ safe-regex-test@1.1.0:
+ resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
+ engines: {node: '>= 0.4'}
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
@@ -11082,18 +10866,13 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.6.3:
- resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
- engines: {node: '>=10'}
- hasBin: true
-
- semver@7.7.1:
- resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
+ semver@7.7.2:
+ resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
engines: {node: '>=10'}
hasBin: true
- semver@7.7.2:
- resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
+ semver@7.7.4:
+ resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
engines: {node: '>=10'}
hasBin: true
@@ -11111,6 +10890,10 @@ packages:
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
+ set-proto@1.0.0:
+ resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
+ engines: {node: '>= 0.4'}
+
shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -11119,8 +10902,20 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- side-channel@1.0.6:
- resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
+ side-channel-list@1.0.0:
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-map@1.0.1:
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-weakmap@1.0.2:
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
+ engines: {node: '>= 0.4'}
+
+ side-channel@1.1.0:
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
engines: {node: '>= 0.4'}
signal-exit@3.0.7:
@@ -11130,15 +10925,12 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- sigstore@4.0.0:
- resolution: {integrity: sha512-Gw/FgHtrLM9WP8P5lLcSGh9OQcrTruWCELAiS48ik1QbL0cH+dfjomiRTUE9zzz+D1N6rOLkwXUvVmXZAsNE0Q==}
+ sigstore@4.1.0:
+ resolution: {integrity: sha512-/fUgUhYghuLzVT/gaJoeVehLCgZiUxPCPMcyVNY0lIf/cTCz58K/WTI7PefDarXxp9nUKpEwg1yyz3eSBMTtgA==}
engines: {node: ^20.17.0 || >=22.9.0}
- simple-swizzle@0.2.2:
- resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
-
- skmeans@0.9.7:
- resolution: {integrity: sha512-hNj1/oZ7ygsfmPZ7ZfN5MUBRoGg1gtpnImuJBgLO0ljQ67DtJuiQaiYdS4lUA6s0KCwnPhGivtC/WRwIZLkHyg==}
+ skmeans@0.11.3:
+ resolution: {integrity: sha512-nccEnlSeOMNAYM9ETMSq+m15u8g0KRCIvH2an/ROTx4Igmci/j3oYHBPGdAeGjhR7knAVoIIQwr/wy2dN/eKQA==}
slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
@@ -11148,28 +10940,25 @@ packages:
resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
engines: {node: '>=14.16'}
- slice-ansi@5.0.0:
- resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
- engines: {node: '>=12'}
-
- slice-ansi@7.1.0:
- resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==}
+ slice-ansi@7.1.2:
+ resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==}
engines: {node: '>=18'}
smart-buffer@4.2.0:
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
- smob@1.4.1:
- resolution: {integrity: sha512-9LK+E7Hv5R9u4g4C3p+jjLstaLe11MDsL21UpYaCNmapvMkYhqCV4A/f/3gyH8QjMyh6l68q9xC85vihY9ahMQ==}
+ smob@1.6.1:
+ resolution: {integrity: sha512-KAkBqZl3c2GvNgNhcoyJae1aKldDW0LO279wF9bk1PnluRTETKBq0WyzRXxEhoQLk56yHaOY4JCBEKDuJIET5g==}
+ engines: {node: '>=20.0.0'}
- socks-proxy-agent@8.0.3:
- resolution: {integrity: sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==}
+ socks-proxy-agent@8.0.5:
+ resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==}
engines: {node: '>= 14'}
- socks@2.7.1:
- resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==}
- engines: {node: '>= 10.13.0', npm: '>= 3.0.0'}
+ socks@2.8.7:
+ resolution: {integrity: sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==}
+ engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
sort-keys@2.0.0:
resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==}
@@ -11179,9 +10968,9 @@ packages:
resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==}
engines: {node: '>=8'}
- sort-keys@5.1.0:
- resolution: {integrity: sha512-aSbHV0DaBcr7u0PVHXzM6NbZNAtrr9sF6+Qfs9UUVG7Ll3jQ6hHi8F/xqIIcn2rvIVbr0v/2zyjSdwSV47AgLQ==}
- engines: {node: '>=12'}
+ sort-keys@6.0.0:
+ resolution: {integrity: sha512-ueSlHJMwpIw42CJ4B11Uxzh/S0p0AlOyiNktlv2KOu5e1JpUE6DlC4AAUjXqesHdBRv/g0wC9Q4vwq0NP2pA9w==}
+ engines: {node: '>=20'}
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
@@ -11194,10 +10983,9 @@ packages:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- source-map@0.8.0-beta.0:
- resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
- engines: {node: '>= 8'}
- deprecated: The work that was done in this beta branch won't be included in future versions
+ source-map@0.7.6:
+ resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
+ engines: {node: '>= 12'}
space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
@@ -11205,14 +10993,14 @@ packages:
spdx-correct@3.2.0:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
- spdx-exceptions@2.3.0:
- resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==}
+ spdx-exceptions@2.5.0:
+ resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
- spdx-license-ids@3.0.16:
- resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==}
+ spdx-license-ids@3.0.23:
+ resolution: {integrity: sha512-CWLcCCH7VLu13TgOH+r8p1O/Znwhqv/dbb6lqWy67G+pT1kHmeD/+V36AVb/vq8QMIQwVShJ6Ssl5FPh0fuSdw==}
splaytree-ts@1.0.2:
resolution: {integrity: sha512-0kGecIZNIReCSiznK3uheYB8sbstLjCZLiwcQwbmLhgHJj2gz6OnSPkVzJQCMnmEz1BQ4gPK59ylhBoEWOhGNA==}
@@ -11230,15 +11018,12 @@ packages:
resolution: {integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- ssri@13.0.0:
- resolution: {integrity: sha512-yizwGBpbCn4YomB2lzhZqrHLJoqFGXihNbib3ozhqF/cIp5ue+xSmOQrjNasEE62hFxsCcg/V/z23t4n8jMEng==}
+ ssri@13.0.1:
+ resolution: {integrity: sha512-QUiRf1+u9wPTL/76GTYlKttDEBWV1ga9ZXW8BG6kfdeyyM8LGPix9gROyg9V2+P0xNyF3X2Go526xKFdMZrHSQ==}
engines: {node: ^20.17.0 || >=22.9.0}
- stack-trace@0.0.10:
- resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==}
-
- stop-iteration-iterator@1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
+ stop-iteration-iterator@1.1.0:
+ resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
engines: {node: '>= 0.4'}
string-argv@0.3.2:
@@ -11257,12 +11042,17 @@ packages:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
- string.prototype.trim@1.2.9:
- resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
+ string-width@8.2.0:
+ resolution: {integrity: sha512-6hJPQ8N0V0P3SNmP6h2J99RLuzrWz2gvT7VnK5tKvrNqJoyS9W4/Fb8mo31UiPvy00z7DQXkP2hnKBVav76thw==}
+ engines: {node: '>=20'}
+
+ string.prototype.trim@1.2.10:
+ resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
engines: {node: '>= 0.4'}
- string.prototype.trimend@1.0.8:
- resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
+ string.prototype.trimend@1.0.9:
+ resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
+ engines: {node: '>= 0.4'}
string.prototype.trimstart@1.0.8:
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
@@ -11285,8 +11075,8 @@ packages:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
- strip-ansi@7.1.0:
- resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
+ strip-ansi@7.2.0:
+ resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
engines: {node: '>=12'}
strip-bom@3.0.0:
@@ -11304,10 +11094,6 @@ packages:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
- strip-final-newline@3.0.0:
- resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
- engines: {node: '>=12'}
-
strip-indent@3.0.0:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
@@ -11316,8 +11102,8 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- strip-json-comments@5.0.1:
- resolution: {integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==}
+ strip-json-comments@5.0.3:
+ resolution: {integrity: sha512-1tB5mhVo7U+ETBKNf92xT4hrQa3pm0MZ0PQvuDnWgAAGHDsfp4lPSpiS6psrSiet87wyGPh9ft6wmhOMQ0hDiw==}
engines: {node: '>=14.16'}
stylus-lookup@6.1.0:
@@ -11325,8 +11111,8 @@ packages:
engines: {node: '>=18'}
hasBin: true
- sucrase@3.35.0:
- resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
+ sucrase@3.35.1:
+ resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
@@ -11334,10 +11120,6 @@ packages:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
- supports-color@8.1.1:
- resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
- engines: {node: '>=10'}
-
supports-color@9.4.0:
resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==}
engines: {node: '>=12'}
@@ -11349,12 +11131,12 @@ packages:
sweepline-intersections@1.5.0:
resolution: {integrity: sha512-AoVmx72QHpKtItPu72TzFL+kcYjd67BPLDoR0LarIk+xyaRg+pDTMFXndIEvZf9xEKnJv6JdhgRMnocoG0D3AQ==}
- synckit@0.11.11:
- resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==}
+ synckit@0.11.12:
+ resolution: {integrity: sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==}
engines: {node: ^14.18.0 || >=16.0.0}
- tapable@2.2.1:
- resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
+ tapable@2.3.0:
+ resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
engines: {node: '>=6'}
tape@5.9.0:
@@ -11365,20 +11147,17 @@ packages:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
- tar@6.2.1:
- resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
- engines: {node: '>=10'}
-
- tar@7.5.2:
- resolution: {integrity: sha512-7NyxrTE4Anh8km8iEy7o0QYPs+0JKBTj5ZaqHg6B39erLg0qYXN3BijtShwbsNSvQ+LN75+KV+C4QR/f6Gwnpg==}
+ tar@7.5.7:
+ resolution: {integrity: sha512-fov56fJiRuThVFXD6o6/Q354S7pnWMJIVlDBYijsTNx6jKSE4pvrDTs6lUnmGvNyfJwFQQwWy3owKz1ucIhveQ==}
engines: {node: '>=18'}
+ deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
temp-dir@1.0.0:
resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==}
engines: {node: '>=4'}
- terser@5.26.0:
- resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==}
+ terser@5.46.0:
+ resolution: {integrity: sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg==}
engines: {node: '>=10'}
hasBin: true
@@ -11386,9 +11165,6 @@ packages:
resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==}
engines: {node: '>=0.10'}
- text-hex@1.0.0:
- resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==}
-
thenify-all@1.6.0:
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
engines: {node: '>=0.8'}
@@ -11409,13 +11185,16 @@ packages:
resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
engines: {node: '>=12.0.0'}
- tinyglobby@0.2.13:
- resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
+ tinyglobby@0.2.15:
+ resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
engines: {node: '>=12.0.0'}
tinyqueue@2.0.3:
resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==}
+ tinyqueue@3.0.0:
+ resolution: {integrity: sha512-gRa9gwYU3ECmQYv3lslts5hxuIa90veaEcxDYuu3QGOIAEM2mOZkVHp48ANJuu1CURtRdHKUBY5Lm1tHV+sD4g==}
+
tmp@0.2.5:
resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==}
engines: {node: '>=14.14'}
@@ -11432,9 +11211,6 @@ packages:
resolution: {integrity: sha512-/VS9j/ffKr2XAOjlZ9CgyyeLmgJ9dMwq6Y0YEON8O7p/tGGk+dCWnrE03zEdu7i4L7YsFZLEPZPzCvcB7lEEXw==}
hasBin: true
- tr46@1.0.1:
- resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
-
tree-kill@1.2.2:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
@@ -11450,15 +11226,11 @@ packages:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'}
- triple-beam@1.4.1:
- resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==}
- engines: {node: '>= 14.0.0'}
-
trough@2.2.0:
resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
- ts-api-utils@2.1.0:
- resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
+ ts-api-utils@2.4.0:
+ resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
engines: {node: '>=18.12'}
peerDependencies:
typescript: '>=4.8.4'
@@ -11483,8 +11255,8 @@ packages:
typescript:
optional: true
- tsup@8.4.0:
- resolution: {integrity: sha512-b+eZbPCjz10fRryaAA7C8xlIHnf8VnsaRqydheLIqwG/Mcpfk8Z5zp3HayX7GaTygkigHl5cBUs+IhcySiIexQ==}
+ tsup@8.5.1:
+ resolution: {integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -11502,13 +11274,13 @@ packages:
typescript:
optional: true
- tsx@4.19.4:
- resolution: {integrity: sha512-gK5GVzDkJK1SI1zwHf32Mqxf2tSJkNx+eYcNly5+nHvWqXUJYUkWBQtKauoESz3ymezAI++ZwT855x5p5eop+Q==}
+ tsx@4.21.0:
+ resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
engines: {node: '>=18.0.0'}
hasBin: true
- tuf-js@4.0.0:
- resolution: {integrity: sha512-Lq7ieeGvXDXwpoSmOSgLWVdsGGV9J4a77oDTAPe/Ltrqnnm/ETaRlBAQTH5JatEh8KXuE6sddf9qAv1Q2282Hg==}
+ tuf-js@4.1.0:
+ resolution: {integrity: sha512-50QV99kCKH5P/Vs4E2Gzp7BopNV+KzTXqWeaxrfu5IQJBOULRsTIS9seSsOVT8ZnGXzCyx55nYWAi4qJzpZKEQ==}
engines: {node: ^20.17.0 || >=22.9.0}
type-check@0.4.0:
@@ -11535,16 +11307,16 @@ packages:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
- typed-array-buffer@1.0.2:
- resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
+ typed-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
engines: {node: '>= 0.4'}
- typed-array-byte-length@1.0.1:
- resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
+ typed-array-byte-length@1.0.3:
+ resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
engines: {node: '>= 0.4'}
- typed-array-byte-offset@1.0.3:
- resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==}
+ typed-array-byte-offset@1.0.4:
+ resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
engines: {node: '>= 0.4'}
typed-array-length@1.0.7:
@@ -11557,32 +11329,36 @@ packages:
typedarray@0.0.6:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
- typescript-eslint@8.38.0:
- resolution: {integrity: sha512-FsZlrYK6bPDGoLeZRuvx2v6qrM03I0U0SnfCLPs/XCCPCFD80xU9Pg09H/K+XFa68uJuZo7l/Xhs+eDRg2l3hg==}
+ typescript-eslint@8.56.1:
+ resolution: {integrity: sha512-U4lM6pjmBX7J5wk4szltF7I1cGBHXZopnAXCMXb3+fZ3B/0Z3hq3wS/CCUB2NZBNAExK92mCU2tEohWuwVMsDQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.0.0'
- typescript@5.8.3:
- resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
+ typescript@5.9.3:
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
engines: {node: '>=14.17'}
hasBin: true
+ ufo@1.6.3:
+ resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==}
+
uglify-js@3.19.3:
resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
engines: {node: '>=0.8.0'}
hasBin: true
- unbox-primitive@1.0.2:
- resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
+ unbox-primitive@1.1.0:
+ resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
+ engines: {node: '>= 0.4'}
unc-path-regex@0.1.2:
resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==}
engines: {node: '>=0.10.0'}
- undici-types@6.21.0:
- resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
+ undici-types@7.18.2:
+ resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
unicode-canonical-property-names-ecmascript@2.0.1:
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
@@ -11592,33 +11368,29 @@ packages:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
- unicode-match-property-value-ecmascript@2.2.0:
- resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
+ unicode-match-property-value-ecmascript@2.2.1:
+ resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==}
engines: {node: '>=4'}
- unicode-property-aliases-ecmascript@2.1.0:
- resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
+ unicode-property-aliases-ecmascript@2.2.0:
+ resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==}
engines: {node: '>=4'}
unicorn-magic@0.1.0:
resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
engines: {node: '>=18'}
+ unicorn-magic@0.3.0:
+ resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
+ engines: {node: '>=18'}
+
unified@10.1.2:
resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
- unique-filename@4.0.0:
- resolution: {integrity: sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
unique-filename@5.0.0:
resolution: {integrity: sha512-2RaJTAvAb4owyjllTfXzFClJ7WsGxlykkPvCr9pA//LD9goVq+m4PPAeBgNodGZ7nSrntT/auWpJ6Y5IFXcfjg==}
engines: {node: ^20.17.0 || >=22.9.0}
- unique-slug@5.0.0:
- resolution: {integrity: sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
unique-slug@6.0.0:
resolution: {integrity: sha512-4Lup7Ezn8W3d52/xBhZBVdx323ckxa7DEvd9kPQHppTkLoJXw6ltrBCyj5pnrxj0qKDxYMJ56CoxNuFCscdTiw==}
engines: {node: ^20.17.0 || >=22.9.0}
@@ -11655,8 +11427,8 @@ packages:
resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}
engines: {node: '>=4'}
- update-browserslist-db@1.1.3:
- resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
+ update-browserslist-db@1.2.3:
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -11714,26 +11486,20 @@ packages:
web-namespaces@2.0.1:
resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==}
- webidl-conversions@4.0.2:
- resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
-
- whatwg-url@7.1.0:
- resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
-
- which-boxed-primitive@1.1.0:
- resolution: {integrity: sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng==}
+ which-boxed-primitive@1.1.1:
+ resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
engines: {node: '>= 0.4'}
- which-builtin-type@1.2.0:
- resolution: {integrity: sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==}
+ which-builtin-type@1.2.1:
+ resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
engines: {node: '>= 0.4'}
which-collection@1.0.2:
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
engines: {node: '>= 0.4'}
- which-typed-array@1.1.16:
- resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==}
+ which-typed-array@1.1.20:
+ resolution: {integrity: sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==}
engines: {node: '>= 0.4'}
which@2.0.2:
@@ -11746,24 +11512,16 @@ packages:
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
- which@6.0.0:
- resolution: {integrity: sha512-f+gEpIKMR9faW/JgAgPK1D7mekkFoqbmiwvNzuhsHetni20QSgzg9Vhn0g2JSJkkfehQnqdUAx7/e15qS1lPxg==}
+ which@6.0.1:
+ resolution: {integrity: sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==}
engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
wide-align@1.1.5:
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
- winston-transport@4.9.0:
- resolution: {integrity: sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==}
- engines: {node: '>= 12.0.0'}
-
- winston@3.17.0:
- resolution: {integrity: sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw==}
- engines: {node: '>= 12.0.0'}
-
- wkt-parser@1.3.3:
- resolution: {integrity: sha512-ZnV3yH8/k58ZPACOXeiHaMuXIiaTk1t0hSUVisbO0t4RjA5wPpUytcxeyiN2h+LZRrmuHIh/1UlrR9e7DHDvTw==}
+ wkt-parser@1.5.2:
+ resolution: {integrity: sha512-1ZUiV1FTwSiSrgWzV9KXJuOF2BVW91KY/mau04BhnmgOdroRQea7Q0s5TVqwGLm0D2tZwObd/tBYXW49sSxp3Q==}
word-wrap@1.2.5:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
@@ -11780,12 +11538,8 @@ packages:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
- wrap-ansi@8.1.0:
- resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
- engines: {node: '>=12'}
-
- wrap-ansi@9.0.0:
- resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==}
+ wrap-ansi@9.0.2:
+ resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==}
engines: {node: '>=18'}
wrappy@1.0.2:
@@ -11809,9 +11563,9 @@ packages:
resolution: {integrity: sha512-3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ==}
engines: {node: '>=6'}
- write-json-file@6.0.0:
- resolution: {integrity: sha512-MNHcU3f9WxnNyR6MxsYSj64Jz0+dwIpisWKWq9gqLj/GwmA9INg3BZ3vt70/HB3GEwrnDQWr4RPrywnhNzmUFA==}
- engines: {node: '>=18'}
+ write-json-file@7.0.0:
+ resolution: {integrity: sha512-rj8As6LkachKauGxvZkFzCEd6hIRTi9FKtCNKOa4SaH5vPOiACbGcmPUEJXgkhTHwzNsYmcSbD3C9a6whBfyOg==}
+ engines: {node: '>=20'}
write-pkg@4.0.0:
resolution: {integrity: sha512-v2UQ+50TNf2rNHJ8NyWttfm/EJUBWMJcx6ZTYZr6Qp52uuegWw/lBkCtCbnYZEmPRNL61m+u67dAmGxo+HTULA==}
@@ -11839,17 +11593,17 @@ packages:
resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
engines: {node: '>=18'}
- yaml@2.7.1:
- resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==}
- engines: {node: '>= 14'}
+ yaml@2.8.2:
+ resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
+ engines: {node: '>= 14.6'}
hasBin: true
yamljs@0.3.0:
resolution: {integrity: sha512-C/FsVVhht4iPQYXOInoxUM/1ELSf9EsgKH34FofQOp6hwCPrW4vG4w5++TED3xRUo8gD7l0P1J1dLlDYzODsTQ==}
hasBin: true
- yargs-parser@20.2.4:
- resolution: {integrity: sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==}
+ yargs-parser@20.2.9:
+ resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
yargs-parser@21.1.1:
@@ -11868,740 +11622,685 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.0.0:
- resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ yocto-queue@1.2.2:
+ resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==}
engines: {node: '>=12.20'}
yoctocolors-cjs@2.1.3:
resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==}
engines: {node: '>=18'}
+ zod@4.3.6:
+ resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
+
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
snapshots:
- '@ampproject/remapping@2.3.0':
- dependencies:
- '@jridgewell/gen-mapping': 0.3.8
- '@jridgewell/trace-mapping': 0.3.25
-
- '@babel/code-frame@7.26.2':
+ '@babel/code-frame@7.29.0':
dependencies:
- '@babel/helper-validator-identifier': 7.25.9
+ '@babel/helper-validator-identifier': 7.28.5
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.26.8': {}
+ '@babel/compat-data@7.29.0': {}
- '@babel/core@7.26.0':
+ '@babel/core@7.29.0':
dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.2
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
- '@babel/helpers': 7.27.0
- '@babel/parser': 7.26.2
- '@babel/template': 7.27.0
- '@babel/traverse': 7.25.9
- '@babel/types': 7.26.0
- convert-source-map: 2.0.0
- debug: 4.4.0
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/core@7.26.10':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.27.0
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helpers': 7.27.0
- '@babel/parser': 7.27.0
- '@babel/template': 7.27.0
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/code-frame': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
+ '@babel/helpers': 7.28.6
+ '@babel/parser': 7.29.0
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
+ '@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
- debug: 4.4.0
+ debug: 4.4.3
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.26.2':
+ '@babel/generator@7.29.1':
dependencies:
- '@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
-
- '@babel/generator@7.27.0':
- dependencies:
- '@babel/parser': 7.27.0
- '@babel/types': 7.27.0
- '@jridgewell/gen-mapping': 0.3.8
- '@jridgewell/trace-mapping': 0.3.25
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- '@babel/helper-annotate-as-pure@7.25.9':
+ '@babel/helper-annotate-as-pure@7.27.3':
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.29.0
- '@babel/helper-compilation-targets@7.27.0':
+ '@babel/helper-compilation-targets@7.28.6':
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/helper-validator-option': 7.25.9
- browserslist: 4.24.4
+ '@babel/compat-data': 7.29.0
+ '@babel/helper-validator-option': 7.27.1
+ browserslist: 4.28.1
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.10)':
+ '@babel/helper-create-class-features-plugin@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@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.26.5(@babel/core@7.26.10)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.29.0
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-member-expression-to-functions': 7.28.5
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/traverse': 7.29.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.27.0(@babel/core@7.26.10)':
+ '@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- regexpu-core: 6.2.0
+ '@babel/core': 7.29.0
+ '@babel/helper-annotate-as-pure': 7.27.3
+ regexpu-core: 6.4.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.26.10)':
+ '@babel/helper-define-polyfill-provider@0.6.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-plugin-utils': 7.26.5
- debug: 4.4.0
+ '@babel/core': 7.29.0
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
+ debug: 4.4.3
lodash.debounce: 4.0.8
- resolve: 1.22.10
+ resolve: 1.22.11
transitivePeerDependencies:
- supports-color
- '@babel/helper-member-expression-to-functions@7.25.9':
- dependencies:
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-globals@7.28.0': {}
- '@babel/helper-module-imports@7.25.9':
+ '@babel/helper-member-expression-to-functions@7.28.5':
dependencies:
- '@babel/traverse': 7.25.9
- '@babel/types': 7.26.0
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
+ '@babel/helper-module-imports@7.28.6':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)':
+ '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.29.0
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.25.9':
+ '@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.29.0
- '@babel/helper-plugin-utils@7.26.5': {}
+ '@babel/helper-plugin-utils@7.28.6': {}
- '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.10)':
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.29.0
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-wrap-function': 7.28.6
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.10)':
+ '@babel/helper-replace-supers@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-member-expression-to-functions': 7.25.9
- '@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.29.0
+ '@babel/helper-member-expression-to-functions': 7.28.5
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-string-parser@7.25.9': {}
+ '@babel/helper-string-parser@7.27.1': {}
- '@babel/helper-validator-identifier@7.25.9': {}
+ '@babel/helper-validator-identifier@7.28.5': {}
- '@babel/helper-validator-option@7.25.9': {}
+ '@babel/helper-validator-option@7.27.1': {}
- '@babel/helper-wrap-function@7.25.9':
+ '@babel/helper-wrap-function@7.28.6':
dependencies:
- '@babel/template': 7.27.0
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.27.0':
- dependencies:
- '@babel/template': 7.27.0
- '@babel/types': 7.27.0
-
- '@babel/parser@7.26.2':
+ '@babel/helpers@7.28.6':
dependencies:
- '@babel/types': 7.26.0
+ '@babel/template': 7.28.6
+ '@babel/types': 7.29.0
- '@babel/parser@7.27.0':
+ '@babel/parser@7.29.0':
dependencies:
- '@babel/types': 7.27.0
+ '@babel/types': 7.29.0
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10)
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/plugin-transform-optional-chaining': 7.28.6(@babel/core@7.29.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.29.0
- '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-assertions@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-attributes@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.10)':
+ '@babel/plugin-transform-async-generator-functions@7.29.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10)
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.29.0)
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-async-to-generator@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10)
+ '@babel/core': 7.29.0
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.29.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.10)':
+ '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-block-scoping@7.27.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-block-scoping@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-class-properties@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-class-static-block@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-classes@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10)
- '@babel/traverse': 7.27.0
- globals: 11.12.0
+ '@babel/core': 7.29.0
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-globals': 7.28.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0)
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-computed-properties@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/template': 7.27.0
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/template': 7.28.6
+
+ '@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/traverse': 7.29.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-dotall-regex@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.29.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-explicit-resource-management@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.29.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.10)':
+ '@babel/plugin-transform-exponentiation-operator@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-for-of@7.26.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.29.0
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-json-strings@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-logical-assignment-operators@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-commonjs@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-systemjs@7.29.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.27.0
+ '@babel/core': 7.29.0
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.29.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.10)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-numeric-separator@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-object-rest-spread@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
+ '@babel/core': 7.29.0
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.29.0)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.29.0)
+ '@babel/traverse': 7.29.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10)
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-replace-supers': 7.28.6(@babel/core@7.29.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-optional-catch-binding@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-optional-chaining@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-private-methods@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-private-property-in-object@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-create-class-features-plugin': 7.28.6(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-regenerator@7.27.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-regenerator@7.29.0(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- regenerator-transform: 0.15.2
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.10)':
+ '@babel/plugin-transform-regexp-modifiers@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
- '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-spread@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-typeof-symbol@7.27.0(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.26.5
-
- '@babel/preset-env@7.26.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.10
- '@babel/helper-compilation-targets': 7.27.0
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-validator-option': 7.25.9
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.10)
- '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.10)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.10)
- '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.10)
- '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.10)
- '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.10)
- '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-for-of': 7.26.9(@babel/core@7.26.10)
- '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.10)
- '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-regenerator': 7.27.0(@babel/core@7.26.10)
- '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.10)
- '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.10)
- '@babel/plugin-transform-typeof-symbol': 7.27.0(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.10)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.10)
- babel-plugin-polyfill-corejs2: 0.4.13(@babel/core@7.26.10)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.10)
- babel-plugin-polyfill-regenerator: 0.6.4(@babel/core@7.26.10)
- core-js-compat: 3.42.0
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+
+ '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+
+ '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+
+ '@babel/plugin-transform-unicode-property-regex@7.28.6(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
+
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
+
+ '@babel/plugin-transform-unicode-sets-regex@7.28.6(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.0)
+ '@babel/helper-plugin-utils': 7.28.6
+
+ '@babel/preset-env@7.29.0(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/compat-data': 7.29.0
+ '@babel/core': 7.29.0
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.28.5(@babel/core@7.29.0)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.0)
+ '@babel/plugin-syntax-import-assertions': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-syntax-import-attributes': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-async-generator-functions': 7.29.0(@babel/core@7.29.0)
+ '@babel/plugin-transform-async-to-generator': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-block-scoping': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-class-properties': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-class-static-block': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-classes': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-computed-properties': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.29.0)
+ '@babel/plugin-transform-dotall-regex': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.29.0(@babel/core@7.29.0)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-explicit-resource-management': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-json-strings': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-modules-systemjs': 7.29.0(@babel/core@7.29.0)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.29.0(@babel/core@7.29.0)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-numeric-separator': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-object-rest-spread': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-optional-chaining': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.29.0)
+ '@babel/plugin-transform-private-methods': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-private-property-in-object': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-regenerator': 7.29.0(@babel/core@7.29.0)
+ '@babel/plugin-transform-regexp-modifiers': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-spread': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.28.6(@babel/core@7.29.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.29.0)
+ babel-plugin-polyfill-corejs2: 0.4.15(@babel/core@7.29.0)
+ babel-plugin-polyfill-corejs3: 0.14.0(@babel/core@7.29.0)
+ babel-plugin-polyfill-regenerator: 0.6.6(@babel/core@7.29.0)
+ core-js-compat: 3.48.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.10)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.26.5
- '@babel/types': 7.27.0
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+ '@babel/types': 7.29.0
esutils: 2.0.3
- '@babel/runtime@7.27.0':
- dependencies:
- regenerator-runtime: 0.14.1
-
- '@babel/template@7.27.0':
- dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.27.0
- '@babel/types': 7.27.0
-
- '@babel/traverse@7.25.9':
+ '@babel/template@7.28.6':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.2
- '@babel/parser': 7.26.2
- '@babel/template': 7.27.0
- '@babel/types': 7.26.0
- debug: 4.4.0
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/code-frame': 7.29.0
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
- '@babel/traverse@7.27.0':
+ '@babel/traverse@7.29.0':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.27.0
- '@babel/parser': 7.27.0
- '@babel/template': 7.27.0
- '@babel/types': 7.27.0
- debug: 4.4.0
- globals: 11.12.0
+ '@babel/code-frame': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/helper-globals': 7.28.0
+ '@babel/parser': 7.29.0
+ '@babel/template': 7.28.6
+ '@babel/types': 7.29.0
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
- '@babel/types@7.26.0':
- dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
-
- '@babel/types@7.27.0':
- dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
-
- '@colors/colors@1.6.0': {}
-
- '@dabh/diagnostics@2.0.3':
+ '@babel/types@7.29.0':
dependencies:
- colorspace: 1.1.4
- enabled: 2.0.0
- kuler: 2.0.0
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
'@dependents/detective-less@5.0.1':
dependencies:
gonzales-pe: 4.3.0
node-source-walk: 7.0.1
- '@emnapi/core@1.7.1':
+ '@emnapi/core@1.8.1':
dependencies:
'@emnapi/wasi-threads': 1.1.0
tslib: 2.8.1
- '@emnapi/runtime@1.7.1':
+ '@emnapi/runtime@1.8.1':
dependencies:
tslib: 2.8.1
@@ -12609,290 +12308,287 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@esbuild/aix-ppc64@0.25.3':
+ '@esbuild/aix-ppc64@0.27.3':
optional: true
- '@esbuild/android-arm64@0.25.3':
+ '@esbuild/android-arm64@0.27.3':
optional: true
- '@esbuild/android-arm@0.25.3':
+ '@esbuild/android-arm@0.27.3':
optional: true
- '@esbuild/android-x64@0.25.3':
+ '@esbuild/android-x64@0.27.3':
optional: true
- '@esbuild/darwin-arm64@0.25.3':
+ '@esbuild/darwin-arm64@0.27.3':
optional: true
- '@esbuild/darwin-x64@0.25.3':
+ '@esbuild/darwin-x64@0.27.3':
optional: true
- '@esbuild/freebsd-arm64@0.25.3':
+ '@esbuild/freebsd-arm64@0.27.3':
optional: true
- '@esbuild/freebsd-x64@0.25.3':
+ '@esbuild/freebsd-x64@0.27.3':
optional: true
- '@esbuild/linux-arm64@0.25.3':
+ '@esbuild/linux-arm64@0.27.3':
optional: true
- '@esbuild/linux-arm@0.25.3':
+ '@esbuild/linux-arm@0.27.3':
optional: true
- '@esbuild/linux-ia32@0.25.3':
+ '@esbuild/linux-ia32@0.27.3':
optional: true
- '@esbuild/linux-loong64@0.25.3':
+ '@esbuild/linux-loong64@0.27.3':
optional: true
- '@esbuild/linux-mips64el@0.25.3':
+ '@esbuild/linux-mips64el@0.27.3':
optional: true
- '@esbuild/linux-ppc64@0.25.3':
+ '@esbuild/linux-ppc64@0.27.3':
optional: true
- '@esbuild/linux-riscv64@0.25.3':
+ '@esbuild/linux-riscv64@0.27.3':
optional: true
- '@esbuild/linux-s390x@0.25.3':
+ '@esbuild/linux-s390x@0.27.3':
optional: true
- '@esbuild/linux-x64@0.25.3':
+ '@esbuild/linux-x64@0.27.3':
optional: true
- '@esbuild/netbsd-arm64@0.25.3':
+ '@esbuild/netbsd-arm64@0.27.3':
optional: true
- '@esbuild/netbsd-x64@0.25.3':
+ '@esbuild/netbsd-x64@0.27.3':
optional: true
- '@esbuild/openbsd-arm64@0.25.3':
+ '@esbuild/openbsd-arm64@0.27.3':
optional: true
- '@esbuild/openbsd-x64@0.25.3':
+ '@esbuild/openbsd-x64@0.27.3':
optional: true
- '@esbuild/sunos-x64@0.25.3':
+ '@esbuild/openharmony-arm64@0.27.3':
optional: true
- '@esbuild/win32-arm64@0.25.3':
+ '@esbuild/sunos-x64@0.27.3':
optional: true
- '@esbuild/win32-ia32@0.25.3':
+ '@esbuild/win32-arm64@0.27.3':
optional: true
- '@esbuild/win32-x64@0.25.3':
+ '@esbuild/win32-ia32@0.27.3':
optional: true
- '@eslint-community/eslint-utils@4.6.1(eslint@9.31.0)':
- dependencies:
- eslint: 9.31.0
- eslint-visitor-keys: 3.4.3
+ '@esbuild/win32-x64@0.27.3':
+ optional: true
- '@eslint-community/eslint-utils@4.7.0(eslint@9.31.0)':
+ '@eslint-community/eslint-utils@4.9.1(eslint@10.0.2)':
dependencies:
- eslint: 9.31.0
+ eslint: 10.0.2
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.12.1': {}
+ '@eslint-community/regexpp@4.12.2': {}
- '@eslint/config-array@0.21.0':
+ '@eslint/config-array@0.23.2':
dependencies:
- '@eslint/object-schema': 2.1.6
- debug: 4.4.0
- minimatch: 3.1.2
+ '@eslint/object-schema': 3.0.2
+ debug: 4.4.3
+ minimatch: 10.2.4
transitivePeerDependencies:
- supports-color
- '@eslint/config-helpers@0.3.0': {}
+ '@eslint/config-helpers@0.5.2':
+ dependencies:
+ '@eslint/core': 1.1.0
- '@eslint/core@0.15.1':
+ '@eslint/core@1.1.0':
dependencies:
'@types/json-schema': 7.0.15
- '@eslint/eslintrc@3.3.1':
+ '@eslint/eslintrc@3.3.4':
dependencies:
- ajv: 6.12.6
- debug: 4.3.7
- espree: 10.3.0
+ ajv: 6.14.0
+ debug: 4.4.3
+ espree: 10.4.0
globals: 14.0.0
ignore: 5.3.2
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.1
- minimatch: 3.1.2
+ minimatch: 3.1.5
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.31.0': {}
+ '@eslint/js@10.0.1(eslint@10.0.2)':
+ optionalDependencies:
+ eslint: 10.0.2
- '@eslint/object-schema@2.1.6': {}
+ '@eslint/object-schema@3.0.2': {}
- '@eslint/plugin-kit@0.3.4':
+ '@eslint/plugin-kit@0.6.0':
dependencies:
- '@eslint/core': 0.15.1
+ '@eslint/core': 1.1.0
levn: 0.4.1
+ '@gar/promise-retry@1.0.2':
+ dependencies:
+ retry: 0.13.1
+
'@gwhitney/detect-indent@7.0.1': {}
'@humanfs/core@0.19.1': {}
- '@humanfs/node@0.16.6':
+ '@humanfs/node@0.16.7':
dependencies:
'@humanfs/core': 0.19.1
- '@humanwhocodes/retry': 0.3.1
+ '@humanwhocodes/retry': 0.4.3
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/retry@0.3.1': {}
-
- '@humanwhocodes/retry@0.4.2': {}
+ '@humanwhocodes/retry@0.4.3': {}
'@hutson/parse-repository-url@3.0.2': {}
'@inquirer/ansi@1.0.2': {}
- '@inquirer/checkbox@4.3.2(@types/node@22.15.3)':
+ '@inquirer/checkbox@4.3.2(@types/node@25.3.2)':
dependencies:
'@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@22.15.3)
+ '@inquirer/core': 10.3.2(@types/node@25.3.2)
'@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@22.15.3)
+ '@inquirer/type': 3.0.10(@types/node@25.3.2)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
- '@inquirer/confirm@5.1.21(@types/node@22.15.3)':
+ '@inquirer/confirm@5.1.21(@types/node@25.3.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.15.3)
- '@inquirer/type': 3.0.10(@types/node@22.15.3)
+ '@inquirer/core': 10.3.2(@types/node@25.3.2)
+ '@inquirer/type': 3.0.10(@types/node@25.3.2)
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
- '@inquirer/core@10.3.2(@types/node@22.15.3)':
+ '@inquirer/core@10.3.2(@types/node@25.3.2)':
dependencies:
'@inquirer/ansi': 1.0.2
'@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@22.15.3)
+ '@inquirer/type': 3.0.10(@types/node@25.3.2)
cli-width: 4.1.0
mute-stream: 2.0.0
signal-exit: 4.1.0
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
- '@inquirer/editor@4.2.23(@types/node@22.15.3)':
+ '@inquirer/editor@4.2.23(@types/node@25.3.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.15.3)
- '@inquirer/external-editor': 1.0.3(@types/node@22.15.3)
- '@inquirer/type': 3.0.10(@types/node@22.15.3)
+ '@inquirer/core': 10.3.2(@types/node@25.3.2)
+ '@inquirer/external-editor': 1.0.3(@types/node@25.3.2)
+ '@inquirer/type': 3.0.10(@types/node@25.3.2)
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
- '@inquirer/expand@4.0.23(@types/node@22.15.3)':
+ '@inquirer/expand@4.0.23(@types/node@25.3.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.15.3)
- '@inquirer/type': 3.0.10(@types/node@22.15.3)
+ '@inquirer/core': 10.3.2(@types/node@25.3.2)
+ '@inquirer/type': 3.0.10(@types/node@25.3.2)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
- '@inquirer/external-editor@1.0.3(@types/node@22.15.3)':
+ '@inquirer/external-editor@1.0.3(@types/node@25.3.2)':
dependencies:
chardet: 2.1.1
- iconv-lite: 0.7.0
+ iconv-lite: 0.7.2
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
'@inquirer/figures@1.0.15': {}
- '@inquirer/input@4.3.1(@types/node@22.15.3)':
+ '@inquirer/input@4.3.1(@types/node@25.3.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.15.3)
- '@inquirer/type': 3.0.10(@types/node@22.15.3)
+ '@inquirer/core': 10.3.2(@types/node@25.3.2)
+ '@inquirer/type': 3.0.10(@types/node@25.3.2)
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
- '@inquirer/number@3.0.23(@types/node@22.15.3)':
+ '@inquirer/number@3.0.23(@types/node@25.3.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.15.3)
- '@inquirer/type': 3.0.10(@types/node@22.15.3)
+ '@inquirer/core': 10.3.2(@types/node@25.3.2)
+ '@inquirer/type': 3.0.10(@types/node@25.3.2)
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
- '@inquirer/password@4.0.23(@types/node@22.15.3)':
+ '@inquirer/password@4.0.23(@types/node@25.3.2)':
dependencies:
'@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@22.15.3)
- '@inquirer/type': 3.0.10(@types/node@22.15.3)
+ '@inquirer/core': 10.3.2(@types/node@25.3.2)
+ '@inquirer/type': 3.0.10(@types/node@25.3.2)
optionalDependencies:
- '@types/node': 22.15.3
-
- '@inquirer/prompts@7.10.1(@types/node@22.15.3)':
- dependencies:
- '@inquirer/checkbox': 4.3.2(@types/node@22.15.3)
- '@inquirer/confirm': 5.1.21(@types/node@22.15.3)
- '@inquirer/editor': 4.2.23(@types/node@22.15.3)
- '@inquirer/expand': 4.0.23(@types/node@22.15.3)
- '@inquirer/input': 4.3.1(@types/node@22.15.3)
- '@inquirer/number': 3.0.23(@types/node@22.15.3)
- '@inquirer/password': 4.0.23(@types/node@22.15.3)
- '@inquirer/rawlist': 4.1.11(@types/node@22.15.3)
- '@inquirer/search': 3.2.2(@types/node@22.15.3)
- '@inquirer/select': 4.4.2(@types/node@22.15.3)
+ '@types/node': 25.3.2
+
+ '@inquirer/prompts@7.10.1(@types/node@25.3.2)':
+ dependencies:
+ '@inquirer/checkbox': 4.3.2(@types/node@25.3.2)
+ '@inquirer/confirm': 5.1.21(@types/node@25.3.2)
+ '@inquirer/editor': 4.2.23(@types/node@25.3.2)
+ '@inquirer/expand': 4.0.23(@types/node@25.3.2)
+ '@inquirer/input': 4.3.1(@types/node@25.3.2)
+ '@inquirer/number': 3.0.23(@types/node@25.3.2)
+ '@inquirer/password': 4.0.23(@types/node@25.3.2)
+ '@inquirer/rawlist': 4.1.11(@types/node@25.3.2)
+ '@inquirer/search': 3.2.2(@types/node@25.3.2)
+ '@inquirer/select': 4.4.2(@types/node@25.3.2)
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
- '@inquirer/rawlist@4.1.11(@types/node@22.15.3)':
+ '@inquirer/rawlist@4.1.11(@types/node@25.3.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.15.3)
- '@inquirer/type': 3.0.10(@types/node@22.15.3)
+ '@inquirer/core': 10.3.2(@types/node@25.3.2)
+ '@inquirer/type': 3.0.10(@types/node@25.3.2)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
- '@inquirer/search@3.2.2(@types/node@22.15.3)':
+ '@inquirer/search@3.2.2(@types/node@25.3.2)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.15.3)
+ '@inquirer/core': 10.3.2(@types/node@25.3.2)
'@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@22.15.3)
+ '@inquirer/type': 3.0.10(@types/node@25.3.2)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
- '@inquirer/select@4.4.2(@types/node@22.15.3)':
+ '@inquirer/select@4.4.2(@types/node@25.3.2)':
dependencies:
'@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@22.15.3)
+ '@inquirer/core': 10.3.2(@types/node@25.3.2)
'@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@22.15.3)
+ '@inquirer/type': 3.0.10(@types/node@25.3.2)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
- '@inquirer/type@3.0.10(@types/node@22.15.3)':
+ '@inquirer/type@3.0.10(@types/node@25.3.2)':
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
'@isaacs/balanced-match@4.0.1': {}
- '@isaacs/brace-expansion@5.0.0':
+ '@isaacs/brace-expansion@5.0.1':
dependencies:
'@isaacs/balanced-match': 4.0.1
- '@isaacs/cliui@8.0.2':
- dependencies:
- string-width: 5.1.2
- string-width-cjs: string-width@4.2.3
- strip-ansi: 7.1.0
- strip-ansi-cjs: strip-ansi@6.0.1
- wrap-ansi: 8.1.0
- wrap-ansi-cjs: wrap-ansi@7.0.0
+ '@isaacs/cliui@9.0.0': {}
'@isaacs/fs-minipass@4.0.1':
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
'@isaacs/string-locale-compare@1.1.0': {}
@@ -12900,48 +12596,40 @@ snapshots:
'@jest/get-type@30.1.0': {}
- '@jest/schemas@29.6.3':
- dependencies:
- '@sinclair/typebox': 0.27.8
-
'@jest/schemas@30.0.5':
dependencies:
- '@sinclair/typebox': 0.34.41
+ '@sinclair/typebox': 0.34.48
- '@jridgewell/gen-mapping@0.3.5':
+ '@jridgewell/gen-mapping@0.3.13':
dependencies:
- '@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/sourcemap-codec': 1.5.5
+ '@jridgewell/trace-mapping': 0.3.31
- '@jridgewell/gen-mapping@0.3.8':
+ '@jridgewell/remapping@2.3.5':
dependencies:
- '@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.5.0
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
'@jridgewell/resolve-uri@3.1.2': {}
- '@jridgewell/set-array@1.2.1': {}
-
- '@jridgewell/source-map@0.3.5':
+ '@jridgewell/source-map@0.3.11':
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
- '@jridgewell/sourcemap-codec@1.5.0': {}
+ '@jridgewell/sourcemap-codec@1.5.5': {}
- '@jridgewell/trace-mapping@0.3.25':
+ '@jridgewell/trace-mapping@0.3.31':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/sourcemap-codec': 1.5.5
- '@lerna/create@9.0.3(@types/node@22.15.3)(typescript@5.8.3)':
+ '@lerna/create@9.0.4(@types/node@25.3.2)(typescript@5.9.3)':
dependencies:
'@npmcli/arborist': 9.1.6
'@npmcli/package-json': 7.0.2
- '@npmcli/run-script': 10.0.2
- '@nx/devkit': 22.1.3(nx@22.1.3)
+ '@npmcli/run-script': 10.0.3
+ '@nx/devkit': 22.5.2(nx@22.5.2)
'@octokit/plugin-enterprise-rest': 6.0.1
'@octokit/rest': 20.1.2
aproba: 2.0.0
@@ -12953,17 +12641,17 @@ snapshots:
console-control-strings: 1.1.0
conventional-changelog-core: 5.0.1
conventional-recommended-bump: 7.0.1
- cosmiconfig: 9.0.0(typescript@5.8.3)
+ cosmiconfig: 9.0.0(typescript@5.9.3)
dedent: 1.5.3
execa: 5.0.0
- fs-extra: 11.3.0
+ fs-extra: 11.3.3
get-stream: 6.0.0
git-url-parse: 14.0.0
glob-parent: 6.0.2
has-unicode: 2.0.1
ini: 1.3.8
init-package-json: 8.2.2
- inquirer: 12.9.6(@types/node@22.15.3)
+ inquirer: 12.9.6(@types/node@25.3.2)
is-ci: 3.0.1
is-stream: 2.0.0
js-yaml: 4.1.1
@@ -12976,7 +12664,7 @@ snapshots:
npm-package-arg: 13.0.1
npm-packlist: 10.0.3
npm-registry-fetch: 19.1.0
- nx: 22.1.3
+ nx: 22.5.2
p-map: 4.0.0
p-map-series: 2.1.0
p-queue: 6.6.2
@@ -12985,14 +12673,14 @@ snapshots:
pify: 5.0.0
read-cmd-shim: 4.0.0
resolve-from: 5.0.0
- rimraf: 4.4.1
+ rimraf: 6.1.3
semver: 7.7.2
set-blocking: 2.0.0
signal-exit: 3.0.7
slash: 3.0.0
ssri: 12.0.0
string-width: 4.2.3
- tar: 6.2.1
+ tar: 7.5.7
temp-dir: 1.0.0
through: 2.3.8
tinyglobby: 0.2.12
@@ -13016,64 +12704,60 @@ snapshots:
'@ljharb/resumer@0.1.3':
dependencies:
- '@ljharb/through': 2.3.13
- call-bind: 1.0.7
-
- '@ljharb/through@2.3.13':
- dependencies:
- call-bind: 1.0.7
+ '@ljharb/through': 2.3.14
+ call-bind: 1.0.8
'@ljharb/through@2.3.14':
dependencies:
call-bind: 1.0.8
- '@monorepolint/cli@0.5.0':
+ '@monorepolint/cli@0.6.0-alpha.5':
dependencies:
- '@monorepolint/config': 0.5.0
- '@monorepolint/core': 0.5.0
- '@monorepolint/utils': 0.5.0
- chalk: 5.3.0
+ '@monorepolint/config': 0.6.0-alpha.6
+ '@monorepolint/core': 0.6.0-alpha.6
+ '@monorepolint/utils': 0.6.0-alpha.6
+ chalk: 5.6.2
tslib: 2.8.1
yargs: 17.7.2
- '@monorepolint/config@0.5.0':
+ '@monorepolint/config@0.6.0-alpha.6':
dependencies:
- '@monorepolint/utils': 0.5.0
- chalk: 5.3.0
+ '@monorepolint/utils': 0.6.0-alpha.6
+ chalk: 5.6.2
tslib: 2.8.1
- '@monorepolint/core@0.5.0':
+ '@monorepolint/core@0.6.0-alpha.6':
dependencies:
- '@monorepolint/config': 0.5.0
- '@monorepolint/utils': 0.5.0
- chalk: 5.3.0
+ '@monorepolint/config': 0.6.0-alpha.6
+ '@monorepolint/utils': 0.6.0-alpha.6
+ chalk: 5.6.2
tslib: 2.8.1
- '@monorepolint/rules@0.5.0':
+ '@monorepolint/rules@0.6.0-alpha.6':
dependencies:
- '@monorepolint/config': 0.5.0
- '@monorepolint/core': 0.5.0
- '@monorepolint/utils': 0.5.0
- globby: 14.0.2
- jest-diff: 29.7.0
+ '@monorepolint/config': 0.6.0-alpha.6
+ '@monorepolint/core': 0.6.0-alpha.6
+ '@monorepolint/utils': 0.6.0-alpha.6
+ globby: 14.1.0
+ jest-diff: 30.2.0
resolve-package-path: 4.0.3
- runtypes: 6.7.0
- semver: 7.6.3
+ semver: 7.7.4
tslib: 2.8.1
+ zod: 4.3.6
- '@monorepolint/utils@0.5.0':
+ '@monorepolint/utils@0.6.0-alpha.6':
dependencies:
find-packages: 10.0.4
find-up: 7.0.0
- glob: 10.5.0
+ glob: 11.1.0
micromatch: 4.0.8
read-yaml-file: 2.1.0
tslib: 2.8.1
'@napi-rs/wasm-runtime@0.2.4':
dependencies:
- '@emnapi/core': 1.7.1
- '@emnapi/runtime': 1.7.1
+ '@emnapi/core': 1.8.1
+ '@emnapi/runtime': 1.8.1
'@tybys/wasm-util': 0.9.0
'@nodelib/fs.scandir@2.1.5':
@@ -13086,25 +12770,15 @@ snapshots:
'@nodelib/fs.walk@1.2.8':
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.15.0
-
- '@npmcli/agent@3.0.0':
- dependencies:
- agent-base: 7.1.1
- http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.4
- lru-cache: 10.4.3
- socks-proxy-agent: 8.0.3
- transitivePeerDependencies:
- - supports-color
+ fastq: 1.20.1
'@npmcli/agent@4.0.0':
dependencies:
- agent-base: 7.1.1
+ agent-base: 7.1.4
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.4
- lru-cache: 11.2.2
- socks-proxy-agent: 8.0.3
+ https-proxy-agent: 7.0.6
+ lru-cache: 11.2.6
+ socks-proxy-agent: 8.0.5
transitivePeerDependencies:
- supports-color
@@ -13120,20 +12794,20 @@ snapshots:
'@npmcli/package-json': 7.0.2
'@npmcli/query': 4.0.1
'@npmcli/redact': 3.2.2
- '@npmcli/run-script': 10.0.2
+ '@npmcli/run-script': 10.0.3
bin-links: 5.0.0
cacache: 20.0.3
common-ancestor-path: 1.0.1
hosted-git-info: 9.0.2
json-stringify-nice: 1.1.4
- lru-cache: 11.2.2
- minimatch: 10.1.1
+ lru-cache: 11.2.6
+ minimatch: 10.2.4
nopt: 8.1.0
npm-install-checks: 7.1.2
npm-package-arg: 13.0.1
npm-pick-manifest: 11.0.3
npm-registry-fetch: 19.1.0
- pacote: 21.0.4
+ pacote: 21.4.0
parse-conflict-json: 4.0.0
proc-log: 5.0.0
proggy: 3.0.0
@@ -13165,16 +12839,16 @@ snapshots:
semver: 7.7.2
which: 5.0.0
- '@npmcli/git@7.0.1':
+ '@npmcli/git@7.0.2':
dependencies:
+ '@gar/promise-retry': 1.0.2
'@npmcli/promise-spawn': 9.0.1
ini: 6.0.0
- lru-cache: 11.2.2
+ lru-cache: 11.2.6
npm-pick-manifest: 11.0.3
proc-log: 6.1.0
- promise-retry: 2.0.1
semver: 7.7.2
- which: 6.0.0
+ which: 6.0.1
'@npmcli/installed-package-contents@3.0.0':
dependencies:
@@ -13190,14 +12864,14 @@ snapshots:
dependencies:
'@npmcli/name-from-folder': 4.0.0
'@npmcli/package-json': 7.0.2
- glob: 13.0.0
- minimatch: 10.1.1
+ glob: 13.0.6
+ minimatch: 10.2.4
'@npmcli/metavuln-calculator@9.0.3':
dependencies:
cacache: 20.0.3
json-parse-even-better-errors: 5.0.0
- pacote: 21.0.4
+ pacote: 21.4.0
proc-log: 6.1.0
semver: 7.7.2
transitivePeerDependencies:
@@ -13213,7 +12887,7 @@ snapshots:
'@npmcli/package-json@7.0.2':
dependencies:
- '@npmcli/git': 7.0.1
+ '@npmcli/git': 7.0.2
glob: 11.1.0
hosted-git-info: 9.0.2
json-parse-even-better-errors: 5.0.0
@@ -13227,7 +12901,7 @@ snapshots:
'@npmcli/promise-spawn@9.0.1':
dependencies:
- which: 6.0.0
+ which: 6.0.1
'@npmcli/query@4.0.1':
dependencies:
@@ -13235,61 +12909,61 @@ snapshots:
'@npmcli/redact@3.2.2': {}
- '@npmcli/run-script@10.0.2':
+ '@npmcli/run-script@10.0.3':
dependencies:
'@npmcli/node-gyp': 5.0.0
'@npmcli/package-json': 7.0.2
'@npmcli/promise-spawn': 9.0.1
- node-gyp: 11.5.0
+ node-gyp: 12.2.0
proc-log: 6.1.0
- which: 5.0.0
+ which: 6.0.1
transitivePeerDependencies:
- supports-color
- '@nx/devkit@22.1.3(nx@22.1.3)':
+ '@nx/devkit@22.5.2(nx@22.5.2)':
dependencies:
'@zkochan/js-yaml': 0.0.7
ejs: 3.1.10
enquirer: 2.3.6
- minimatch: 9.0.3
- nx: 22.1.3
+ minimatch: 10.1.1
+ nx: 22.5.2
semver: 7.7.2
tslib: 2.8.1
yargs-parser: 21.1.1
- '@nx/nx-darwin-arm64@22.1.3':
+ '@nx/nx-darwin-arm64@22.5.2':
optional: true
- '@nx/nx-darwin-x64@22.1.3':
+ '@nx/nx-darwin-x64@22.5.2':
optional: true
- '@nx/nx-freebsd-x64@22.1.3':
+ '@nx/nx-freebsd-x64@22.5.2':
optional: true
- '@nx/nx-linux-arm-gnueabihf@22.1.3':
+ '@nx/nx-linux-arm-gnueabihf@22.5.2':
optional: true
- '@nx/nx-linux-arm64-gnu@22.1.3':
+ '@nx/nx-linux-arm64-gnu@22.5.2':
optional: true
- '@nx/nx-linux-arm64-musl@22.1.3':
+ '@nx/nx-linux-arm64-musl@22.5.2':
optional: true
- '@nx/nx-linux-x64-gnu@22.1.3':
+ '@nx/nx-linux-x64-gnu@22.5.2':
optional: true
- '@nx/nx-linux-x64-musl@22.1.3':
+ '@nx/nx-linux-x64-musl@22.5.2':
optional: true
- '@nx/nx-win32-arm64-msvc@22.1.3':
+ '@nx/nx-win32-arm64-msvc@22.5.2':
optional: true
- '@nx/nx-win32-x64-msvc@22.1.3':
+ '@nx/nx-win32-x64-msvc@22.5.2':
optional: true
'@octokit/auth-token@4.0.0': {}
- '@octokit/core@5.2.1':
+ '@octokit/core@5.2.2':
dependencies:
'@octokit/auth-token': 4.0.0
'@octokit/graphql': 7.1.1
@@ -13314,18 +12988,18 @@ snapshots:
'@octokit/plugin-enterprise-rest@6.0.1': {}
- '@octokit/plugin-paginate-rest@11.4.4-cjs.2(@octokit/core@5.2.1)':
+ '@octokit/plugin-paginate-rest@11.4.4-cjs.2(@octokit/core@5.2.2)':
dependencies:
- '@octokit/core': 5.2.1
+ '@octokit/core': 5.2.2
'@octokit/types': 13.10.0
- '@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.1)':
+ '@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.2)':
dependencies:
- '@octokit/core': 5.2.1
+ '@octokit/core': 5.2.2
- '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1(@octokit/core@5.2.1)':
+ '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1(@octokit/core@5.2.2)':
dependencies:
- '@octokit/core': 5.2.1
+ '@octokit/core': 5.2.2
'@octokit/types': 13.10.0
'@octokit/request-error@5.1.1':
@@ -13343,21 +13017,18 @@ snapshots:
'@octokit/rest@20.1.2':
dependencies:
- '@octokit/core': 5.2.1
- '@octokit/plugin-paginate-rest': 11.4.4-cjs.2(@octokit/core@5.2.1)
- '@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.1)
- '@octokit/plugin-rest-endpoint-methods': 13.3.2-cjs.1(@octokit/core@5.2.1)
+ '@octokit/core': 5.2.2
+ '@octokit/plugin-paginate-rest': 11.4.4-cjs.2(@octokit/core@5.2.2)
+ '@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.2)
+ '@octokit/plugin-rest-endpoint-methods': 13.3.2-cjs.1(@octokit/core@5.2.2)
'@octokit/types@13.10.0':
dependencies:
'@octokit/openapi-types': 24.2.0
- '@pkgjs/parseargs@0.11.0':
- optional: true
-
'@pkgr/core@0.2.9': {}
- '@placemarkio/check-geojson@0.1.12': {}
+ '@placemarkio/check-geojson@0.1.14': {}
'@pnpm/constants@6.1.0': {}
@@ -13401,176 +13072,181 @@ snapshots:
write-file-atomic: 5.0.1
write-yaml-file: 4.2.0
- '@rollup/plugin-babel@6.0.4(@babel/core@7.26.10)(rollup@4.40.1)':
+ '@rollup/plugin-babel@6.1.0(@babel/core@7.29.0)(rollup@4.59.0)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.25.9
- '@rollup/pluginutils': 5.1.3(rollup@4.40.1)
+ '@babel/core': 7.29.0
+ '@babel/helper-module-imports': 7.28.6
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.59.0
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-commonjs@28.0.3(rollup@4.40.1)':
+ '@rollup/plugin-commonjs@29.0.0(rollup@4.59.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
commondir: 1.0.1
estree-walker: 2.0.2
- fdir: 6.4.4(picomatch@4.0.2)
+ fdir: 6.5.0(picomatch@4.0.3)
is-reference: 1.2.1
- magic-string: 0.30.17
- picomatch: 4.0.2
+ magic-string: 0.30.21
+ picomatch: 4.0.3
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.59.0
- '@rollup/plugin-inject@5.0.5(rollup@4.40.1)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.59.0)':
dependencies:
- '@rollup/pluginutils': 5.1.3(rollup@4.40.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
estree-walker: 2.0.2
- magic-string: 0.30.14
+ magic-string: 0.30.21
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.59.0
- '@rollup/plugin-node-resolve@16.0.1(rollup@4.40.1)':
+ '@rollup/plugin-node-resolve@16.0.3(rollup@4.59.0)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
- resolve: 1.22.10
+ resolve: 1.22.11
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.59.0
- '@rollup/plugin-terser@0.4.4(rollup@4.40.1)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.59.0)':
dependencies:
serialize-javascript: 6.0.2
- smob: 1.4.1
- terser: 5.26.0
+ smob: 1.6.1
+ terser: 5.46.0
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.59.0
- '@rollup/pluginutils@5.1.3(rollup@4.40.1)':
+ '@rollup/pluginutils@5.3.0(rollup@4.59.0)':
dependencies:
- '@types/estree': 1.0.6
+ '@types/estree': 1.0.8
estree-walker: 2.0.2
- picomatch: 4.0.2
+ picomatch: 4.0.3
optionalDependencies:
- rollup: 4.40.1
+ rollup: 4.59.0
- '@rollup/pluginutils@5.1.4(rollup@4.40.1)':
- dependencies:
- '@types/estree': 1.0.7
- estree-walker: 2.0.2
- picomatch: 4.0.2
- optionalDependencies:
- rollup: 4.40.1
+ '@rollup/rollup-android-arm-eabi@4.59.0':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.59.0':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.59.0':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.59.0':
+ optional: true
+
+ '@rollup/rollup-freebsd-arm64@4.59.0':
+ optional: true
- '@rollup/rollup-android-arm-eabi@4.40.1':
+ '@rollup/rollup-freebsd-x64@4.59.0':
optional: true
- '@rollup/rollup-android-arm64@4.40.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.40.1':
+ '@rollup/rollup-linux-arm-musleabihf@4.59.0':
optional: true
- '@rollup/rollup-darwin-x64@4.40.1':
+ '@rollup/rollup-linux-arm64-gnu@4.59.0':
optional: true
- '@rollup/rollup-freebsd-arm64@4.40.1':
+ '@rollup/rollup-linux-arm64-musl@4.59.0':
optional: true
- '@rollup/rollup-freebsd-x64@4.40.1':
+ '@rollup/rollup-linux-loong64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.40.1':
+ '@rollup/rollup-linux-loong64-musl@4.59.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.40.1':
+ '@rollup/rollup-linux-ppc64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.40.1':
+ '@rollup/rollup-linux-ppc64-musl@4.59.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.40.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.40.1':
+ '@rollup/rollup-linux-riscv64-musl@4.59.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.1':
+ '@rollup/rollup-linux-s390x-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.40.1':
+ '@rollup/rollup-linux-x64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.40.1':
+ '@rollup/rollup-linux-x64-musl@4.59.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.40.1':
+ '@rollup/rollup-openbsd-x64@4.59.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.40.1':
+ '@rollup/rollup-openharmony-arm64@4.59.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.40.1':
+ '@rollup/rollup-win32-arm64-msvc@4.59.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.40.1':
+ '@rollup/rollup-win32-ia32-msvc@4.59.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.40.1':
+ '@rollup/rollup-win32-x64-gnu@4.59.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.40.1':
+ '@rollup/rollup-win32-x64-msvc@4.59.0':
optional: true
'@sigstore/bundle@4.0.0':
dependencies:
'@sigstore/protobuf-specs': 0.5.0
- '@sigstore/core@3.0.0': {}
+ '@sigstore/core@3.1.0': {}
'@sigstore/protobuf-specs@0.5.0': {}
- '@sigstore/sign@4.0.1':
+ '@sigstore/sign@4.1.0':
dependencies:
'@sigstore/bundle': 4.0.0
- '@sigstore/core': 3.0.0
+ '@sigstore/core': 3.1.0
'@sigstore/protobuf-specs': 0.5.0
- make-fetch-happen: 15.0.2
- proc-log: 5.0.0
+ make-fetch-happen: 15.0.4
+ proc-log: 6.1.0
promise-retry: 2.0.1
transitivePeerDependencies:
- supports-color
- '@sigstore/tuf@4.0.0':
+ '@sigstore/tuf@4.0.1':
dependencies:
'@sigstore/protobuf-specs': 0.5.0
- tuf-js: 4.0.0
+ tuf-js: 4.1.0
transitivePeerDependencies:
- supports-color
- '@sigstore/verify@3.0.0':
+ '@sigstore/verify@3.1.0':
dependencies:
'@sigstore/bundle': 4.0.0
- '@sigstore/core': 3.0.0
+ '@sigstore/core': 3.1.0
'@sigstore/protobuf-specs': 0.5.0
- '@sinclair/typebox@0.27.8': {}
-
- '@sinclair/typebox@0.34.41': {}
+ '@sinclair/typebox@0.34.48': {}
'@sindresorhus/merge-streams@2.3.0': {}
'@tufjs/canonical-json@2.0.0': {}
- '@tufjs/models@4.0.0':
+ '@tufjs/models@4.1.0':
dependencies:
'@tufjs/canonical-json': 2.0.0
- minimatch: 9.0.5
+ minimatch: 10.2.4
- '@turf/jsts@2.7.1':
+ '@turf/jsts@2.7.2':
dependencies:
jsts: 2.7.1
@@ -13586,15 +13262,15 @@ snapshots:
'@types/debug@4.1.12':
dependencies:
- '@types/ms': 0.7.34
+ '@types/ms': 2.1.0
- '@types/estree@1.0.6': {}
+ '@types/esrecurse@4.3.1': {}
- '@types/estree@1.0.7': {}
+ '@types/estree@1.0.8': {}
'@types/extend@3.0.4': {}
- '@types/geojson@7946.0.14': {}
+ '@types/geojson@7946.0.16': {}
'@types/geokdbush@1.1.5':
dependencies:
@@ -13602,7 +13278,7 @@ snapshots:
'@types/hast@2.3.10':
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
'@types/json-schema@7.0.15': {}
@@ -13612,17 +13288,17 @@ snapshots:
'@types/mdast@3.0.15':
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
'@types/minimatch@3.0.5': {}
'@types/minimist@1.2.5': {}
- '@types/ms@0.7.34': {}
+ '@types/ms@2.1.0': {}
- '@types/node@22.15.3':
+ '@types/node@25.3.2':
dependencies:
- undici-types: 6.21.0
+ undici-types: 7.18.2
'@types/normalize-package-data@2.4.4': {}
@@ -13630,183 +13306,158 @@ snapshots:
'@types/parse5@6.0.3': {}
- '@types/rbush@3.0.4': {}
+ '@types/rbush@4.0.0': {}
'@types/resolve@1.20.2': {}
- '@types/skmeans@0.11.7': {}
+ '@types/skmeans@0.11.8': {}
'@types/supports-color@8.1.3': {}
'@types/tape@5.8.1':
dependencies:
'@ljharb/through': 2.3.14
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
mock-property: 1.1.0
- '@types/topojson-client@3.1.3':
+ '@types/topojson-client@3.1.5':
dependencies:
- '@types/geojson': 7946.0.14
+ '@types/geojson': 7946.0.16
'@types/topojson-specification': 1.0.5
- '@types/topojson-server@3.0.3':
+ '@types/topojson-server@3.0.4':
dependencies:
- '@types/geojson': 7946.0.14
+ '@types/geojson': 7946.0.16
'@types/topojson-specification': 1.0.5
'@types/topojson-specification@1.0.5':
dependencies:
- '@types/geojson': 7946.0.14
-
- '@types/triple-beam@1.3.5': {}
+ '@types/geojson': 7946.0.16
- '@types/unist@2.0.10': {}
+ '@types/unist@2.0.11': {}
- '@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0)(typescript@5.8.3))(eslint@9.31.0)(typescript@5.8.3)':
+ '@typescript-eslint/eslint-plugin@8.56.1(@typescript-eslint/parser@8.56.1(eslint@10.0.2)(typescript@5.9.3))(eslint@10.0.2)(typescript@5.9.3)':
dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.38.0(eslint@9.31.0)(typescript@5.8.3)
- '@typescript-eslint/scope-manager': 8.38.0
- '@typescript-eslint/type-utils': 8.38.0(eslint@9.31.0)(typescript@5.8.3)
- '@typescript-eslint/utils': 8.38.0(eslint@9.31.0)(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.38.0
- eslint: 9.31.0
- graphemer: 1.4.0
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 8.56.1(eslint@10.0.2)(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.56.1
+ '@typescript-eslint/type-utils': 8.56.1(eslint@10.0.2)(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.56.1(eslint@10.0.2)(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.56.1
+ eslint: 10.0.2
ignore: 7.0.5
natural-compare: 1.4.0
- ts-api-utils: 2.1.0(typescript@5.8.3)
- typescript: 5.8.3
+ ts-api-utils: 2.4.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.38.0(eslint@9.31.0)(typescript@5.8.3)':
+ '@typescript-eslint/parser@8.56.1(eslint@10.0.2)(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.38.0
- '@typescript-eslint/types': 8.38.0
- '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.38.0
- debug: 4.4.0
- eslint: 9.31.0
- typescript: 5.8.3
+ '@typescript-eslint/scope-manager': 8.56.1
+ '@typescript-eslint/types': 8.56.1
+ '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.56.1
+ debug: 4.4.3
+ eslint: 10.0.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.38.0(typescript@5.8.3)':
+ '@typescript-eslint/project-service@8.56.1(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.8.3)
- '@typescript-eslint/types': 8.38.0
- debug: 4.4.0
- typescript: 5.8.3
+ '@typescript-eslint/tsconfig-utils': 8.56.1(typescript@5.9.3)
+ '@typescript-eslint/types': 8.56.1
+ debug: 4.4.3
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.38.0':
+ '@typescript-eslint/scope-manager@8.56.1':
dependencies:
- '@typescript-eslint/types': 8.38.0
- '@typescript-eslint/visitor-keys': 8.38.0
+ '@typescript-eslint/types': 8.56.1
+ '@typescript-eslint/visitor-keys': 8.56.1
- '@typescript-eslint/tsconfig-utils@8.38.0(typescript@5.8.3)':
+ '@typescript-eslint/tsconfig-utils@8.56.1(typescript@5.9.3)':
dependencies:
- typescript: 5.8.3
+ typescript: 5.9.3
- '@typescript-eslint/type-utils@8.38.0(eslint@9.31.0)(typescript@5.8.3)':
+ '@typescript-eslint/type-utils@8.56.1(eslint@10.0.2)(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/types': 8.38.0
- '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3)
- '@typescript-eslint/utils': 8.38.0(eslint@9.31.0)(typescript@5.8.3)
- debug: 4.4.0
- eslint: 9.31.0
- ts-api-utils: 2.1.0(typescript@5.8.3)
- typescript: 5.8.3
+ '@typescript-eslint/types': 8.56.1
+ '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.56.1(eslint@10.0.2)(typescript@5.9.3)
+ debug: 4.4.3
+ eslint: 10.0.2
+ ts-api-utils: 2.4.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@8.31.1': {}
-
- '@typescript-eslint/types@8.38.0': {}
+ '@typescript-eslint/types@8.56.1': {}
- '@typescript-eslint/typescript-estree@8.31.1(typescript@5.8.3)':
+ '@typescript-eslint/typescript-estree@8.56.1(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/types': 8.31.1
- '@typescript-eslint/visitor-keys': 8.31.1
- debug: 4.4.0
- fast-glob: 3.3.3
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.1
- ts-api-utils: 2.1.0(typescript@5.8.3)
- typescript: 5.8.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/typescript-estree@8.38.0(typescript@5.8.3)':
- dependencies:
- '@typescript-eslint/project-service': 8.38.0(typescript@5.8.3)
- '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.8.3)
- '@typescript-eslint/types': 8.38.0
- '@typescript-eslint/visitor-keys': 8.38.0
- debug: 4.4.0
- fast-glob: 3.3.3
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.1
- ts-api-utils: 2.1.0(typescript@5.8.3)
- typescript: 5.8.3
+ '@typescript-eslint/project-service': 8.56.1(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.56.1(typescript@5.9.3)
+ '@typescript-eslint/types': 8.56.1
+ '@typescript-eslint/visitor-keys': 8.56.1
+ debug: 4.4.3
+ minimatch: 10.2.4
+ semver: 7.7.4
+ tinyglobby: 0.2.15
+ ts-api-utils: 2.4.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.38.0(eslint@9.31.0)(typescript@5.8.3)':
+ '@typescript-eslint/utils@8.56.1(eslint@10.0.2)(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.31.0)
- '@typescript-eslint/scope-manager': 8.38.0
- '@typescript-eslint/types': 8.38.0
- '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3)
- eslint: 9.31.0
- typescript: 5.8.3
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.2)
+ '@typescript-eslint/scope-manager': 8.56.1
+ '@typescript-eslint/types': 8.56.1
+ '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
+ eslint: 10.0.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.31.1':
- dependencies:
- '@typescript-eslint/types': 8.31.1
- eslint-visitor-keys: 4.2.0
-
- '@typescript-eslint/visitor-keys@8.38.0':
+ '@typescript-eslint/visitor-keys@8.56.1':
dependencies:
- '@typescript-eslint/types': 8.38.0
- eslint-visitor-keys: 4.2.1
+ '@typescript-eslint/types': 8.56.1
+ eslint-visitor-keys: 5.0.1
- '@vue/compiler-core@3.5.13':
+ '@vue/compiler-core@3.5.29':
dependencies:
- '@babel/parser': 7.26.2
- '@vue/shared': 3.5.13
- entities: 4.5.0
+ '@babel/parser': 7.29.0
+ '@vue/shared': 3.5.29
+ entities: 7.0.1
estree-walker: 2.0.2
source-map-js: 1.2.1
- '@vue/compiler-dom@3.5.13':
+ '@vue/compiler-dom@3.5.29':
dependencies:
- '@vue/compiler-core': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/compiler-core': 3.5.29
+ '@vue/shared': 3.5.29
- '@vue/compiler-sfc@3.5.13':
+ '@vue/compiler-sfc@3.5.29':
dependencies:
- '@babel/parser': 7.26.2
- '@vue/compiler-core': 3.5.13
- '@vue/compiler-dom': 3.5.13
- '@vue/compiler-ssr': 3.5.13
- '@vue/shared': 3.5.13
+ '@babel/parser': 7.29.0
+ '@vue/compiler-core': 3.5.29
+ '@vue/compiler-dom': 3.5.29
+ '@vue/compiler-ssr': 3.5.29
+ '@vue/shared': 3.5.29
estree-walker: 2.0.2
- magic-string: 0.30.14
- postcss: 8.4.49
+ magic-string: 0.30.21
+ postcss: 8.5.6
source-map-js: 1.2.1
- '@vue/compiler-ssr@3.5.13':
+ '@vue/compiler-ssr@3.5.29':
dependencies:
- '@vue/compiler-dom': 3.5.13
- '@vue/shared': 3.5.13
+ '@vue/compiler-dom': 3.5.29
+ '@vue/shared': 3.5.29
- '@vue/shared@3.5.13': {}
+ '@vue/shared@3.5.29': {}
'@yarnpkg/lockfile@1.1.0': {}
@@ -13826,32 +13477,24 @@ snapshots:
abbrev@3.0.1: {}
- acorn-jsx@5.3.2(acorn@8.15.0):
- dependencies:
- acorn: 8.15.0
+ abbrev@4.0.0: {}
- acorn-walk@8.3.4:
+ acorn-jsx@5.3.2(acorn@8.16.0):
dependencies:
- acorn: 8.15.0
-
- acorn@8.14.1: {}
+ acorn: 8.16.0
- acorn@8.15.0: {}
+ acorn@8.16.0: {}
add-stream@1.0.0: {}
- agent-base@7.1.1:
- dependencies:
- debug: 4.4.0
- transitivePeerDependencies:
- - supports-color
+ agent-base@7.1.4: {}
aggregate-error@3.1.0:
dependencies:
clean-stack: 2.2.0
indent-string: 4.0.0
- ajv@6.12.6:
+ ajv@6.14.0:
dependencies:
fast-deep-equal: 3.1.3
fast-json-stable-stringify: 2.1.0
@@ -13860,13 +13503,13 @@ snapshots:
ansi-colors@4.1.3: {}
- ansi-escapes@7.0.0:
+ ansi-escapes@7.3.0:
dependencies:
environment: 1.1.0
ansi-regex@5.0.1: {}
- ansi-regex@6.0.1: {}
+ ansi-regex@6.2.2: {}
ansi-styles@4.3.0:
dependencies:
@@ -13874,7 +13517,7 @@ snapshots:
ansi-styles@5.2.0: {}
- ansi-styles@6.2.1: {}
+ ansi-styles@6.2.3: {}
any-promise@1.3.0: {}
@@ -13895,10 +13538,10 @@ snapshots:
argparse@2.0.1: {}
- array-buffer-byte-length@1.0.1:
+ array-buffer-byte-length@1.0.2:
dependencies:
- call-bind: 1.0.7
- is-array-buffer: 3.0.4
+ call-bound: 1.0.4
+ is-array-buffer: 3.0.5
array-differ@3.0.0: {}
@@ -13906,24 +13549,30 @@ snapshots:
array-union@2.1.0: {}
- array.prototype.every@1.1.6:
+ array.prototype.every@1.1.7:
+ dependencies:
+ call-bound: 1.0.4
+ define-properties: 1.2.1
+ es-abstract: 1.24.1
+ es-object-atoms: 1.1.1
+ is-string: 1.1.1
+
+ array.prototype.flatmap@1.3.3:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.5
- es-object-atoms: 1.0.0
- is-string: 1.1.0
+ es-abstract: 1.24.1
+ es-shim-unscopables: 1.1.0
- arraybuffer.prototype.slice@1.0.3:
+ arraybuffer.prototype.slice@1.0.4:
dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
+ array-buffer-byte-length: 1.0.2
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.24.1
es-errors: 1.3.0
- get-intrinsic: 1.2.4
- is-array-buffer: 3.0.4
- is-shared-array-buffer: 1.0.3
+ get-intrinsic: 1.3.0
+ is-array-buffer: 3.0.5
arrify@1.0.1: {}
@@ -13931,43 +13580,45 @@ snapshots:
ast-module-types@6.0.1: {}
+ async-function@1.0.0: {}
+
async@3.2.6: {}
asynckit@0.4.0: {}
available-typed-arrays@1.0.7:
dependencies:
- possible-typed-array-names: 1.0.0
+ possible-typed-array-names: 1.1.0
- axios@1.13.2:
+ axios@1.13.5:
dependencies:
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.11
form-data: 4.0.5
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.26.10):
+ babel-plugin-polyfill-corejs2@0.4.15(@babel/core@7.29.0):
dependencies:
- '@babel/compat-data': 7.26.8
- '@babel/core': 7.26.10
- '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10)
+ '@babel/compat-data': 7.29.0
+ '@babel/core': 7.29.0
+ '@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.29.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.10):
+ babel-plugin-polyfill-corejs3@0.14.0(@babel/core@7.29.0):
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10)
- core-js-compat: 3.42.0
+ '@babel/core': 7.29.0
+ '@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.29.0)
+ core-js-compat: 3.48.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.26.10):
+ babel-plugin-polyfill-regenerator@0.6.6(@babel/core@7.29.0):
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-define-polyfill-provider': 0.6.4(@babel/core@7.26.10)
+ '@babel/core': 7.29.0
+ '@babel/helper-define-polyfill-provider': 0.6.6(@babel/core@7.29.0)
transitivePeerDependencies:
- supports-color
@@ -13975,16 +13626,20 @@ snapshots:
balanced-match@1.0.2: {}
+ balanced-match@4.0.4: {}
+
base64-js@1.5.1: {}
+ baseline-browser-mapping@2.10.0: {}
+
before-after-hook@2.2.3: {}
benchmark@2.1.4:
dependencies:
- lodash: 4.17.21
+ lodash: 4.17.23
platform: 1.3.6
- bignumber.js@9.1.2: {}
+ bignumber.js@9.3.1: {}
bin-links@5.0.0:
dependencies:
@@ -13994,7 +13649,7 @@ snapshots:
read-cmd-shim: 5.0.0
write-file-atomic: 6.0.0
- binary-extensions@2.2.0: {}
+ binary-extensions@2.3.0: {}
bl@4.1.0:
dependencies:
@@ -14019,16 +13674,21 @@ snapshots:
dependencies:
balanced-match: 1.0.2
+ brace-expansion@5.0.3:
+ dependencies:
+ balanced-match: 4.0.4
+
braces@3.0.3:
dependencies:
fill-range: 7.1.1
- browserslist@4.24.4:
+ browserslist@4.28.1:
dependencies:
- caniuse-lite: 1.0.30001716
- electron-to-chromium: 1.5.145
- node-releases: 2.0.19
- update-browserslist-db: 1.1.3(browserslist@4.24.4)
+ baseline-browser-mapping: 2.10.0
+ caniuse-lite: 1.0.30001774
+ electron-to-chromium: 1.5.302
+ node-releases: 2.0.27
+ update-browserslist-db: 1.2.3(browserslist@4.28.1)
buffer-from@1.1.2: {}
@@ -14037,42 +13697,27 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- bundle-require@5.1.0(esbuild@0.25.3):
+ bundle-require@5.1.0(esbuild@0.27.3):
dependencies:
- esbuild: 0.25.3
+ esbuild: 0.27.3
load-tsconfig: 0.2.5
byte-size@8.1.1: {}
cac@6.7.14: {}
- cacache@19.0.1:
- dependencies:
- '@npmcli/fs': 4.0.0
- fs-minipass: 3.0.3
- glob: 10.5.0
- 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: 7.0.4
- ssri: 12.0.0
- tar: 7.5.2
- unique-filename: 4.0.0
-
cacache@20.0.3:
dependencies:
'@npmcli/fs': 5.0.0
fs-minipass: 3.0.3
- glob: 13.0.0
- lru-cache: 11.1.0
- minipass: 7.1.2
+ glob: 13.0.6
+ lru-cache: 11.2.6
+ minipass: 7.1.3
minipass-collect: 2.0.1
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
p-map: 7.0.4
- ssri: 13.0.0
+ ssri: 13.0.1
unique-filename: 5.0.0
call-bind-apply-helpers@1.0.2:
@@ -14080,14 +13725,6 @@ snapshots:
es-errors: 1.3.0
function-bind: 1.1.2
- call-bind@1.0.7:
- 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
-
call-bind@1.0.8:
dependencies:
call-bind-apply-helpers: 1.0.2
@@ -14095,6 +13732,11 @@ snapshots:
get-intrinsic: 1.3.0
set-function-length: 1.2.2
+ call-bound@1.0.4:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ get-intrinsic: 1.3.0
+
callsites@3.1.0: {}
camelcase-keys@6.2.2:
@@ -14105,9 +13747,9 @@ snapshots:
camelcase@5.3.1: {}
- camelcase@8.0.0: {}
+ camelcase@9.0.0: {}
- caniuse-lite@1.0.30001716: {}
+ caniuse-lite@1.0.30001774: {}
ccount@2.0.1: {}
@@ -14121,9 +13763,7 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.3.0: {}
-
- chalk@5.4.1: {}
+ chalk@5.6.2: {}
character-entities-html4@2.1.0: {}
@@ -14133,7 +13773,7 @@ snapshots:
chardet@2.1.1: {}
- chokidar@3.5.3:
+ chokidar@3.6.0:
dependencies:
anymatch: 3.1.3
braces: 3.0.3
@@ -14149,15 +13789,13 @@ snapshots:
dependencies:
readdirp: 4.1.2
- chownr@2.0.0: {}
-
chownr@3.0.0: {}
chromatism@3.0.0: {}
ci-info@3.9.0: {}
- ci-info@4.0.0: {}
+ ci-info@4.4.0: {}
clean-stack@2.2.0: {}
@@ -14171,12 +13809,10 @@ snapshots:
cli-spinners@2.6.1: {}
- cli-spinners@2.9.2: {}
-
- cli-truncate@4.0.0:
+ cli-truncate@5.1.1:
dependencies:
- slice-ansi: 5.0.0
- string-width: 7.2.0
+ slice-ansi: 7.1.2
+ string-width: 8.2.0
cli-width@4.1.0: {}
@@ -14198,37 +13834,16 @@ snapshots:
cmd-shim@7.0.0: {}
- color-convert@1.9.3:
- dependencies:
- color-name: 1.1.3
-
color-convert@2.0.1:
dependencies:
color-name: 1.1.4
- color-name@1.1.3: {}
-
color-name@1.1.4: {}
- color-string@1.9.1:
- dependencies:
- color-name: 1.1.4
- simple-swizzle: 0.2.2
-
color-support@1.1.3: {}
- color@3.2.1:
- dependencies:
- color-convert: 1.9.3
- color-string: 1.9.1
-
colorette@2.0.20: {}
- colorspace@1.1.4:
- dependencies:
- color: 3.2.1
- text-hex: 1.0.0
-
columnify@1.6.0:
dependencies:
strip-ansi: 6.0.1
@@ -14242,7 +13857,7 @@ snapshots:
commander@12.1.0: {}
- commander@13.1.0: {}
+ commander@14.0.3: {}
commander@2.20.3: {}
@@ -14266,12 +13881,14 @@ snapshots:
readable-stream: 3.6.2
typedarray: 0.0.6
- concaveman@1.2.1:
+ concaveman@2.0.0:
dependencies:
point-in-polygon: 1.1.0
- rbush: 3.0.1
- robust-predicates: 2.0.4
- tinyqueue: 2.0.3
+ rbush: 4.0.1
+ robust-predicates: 3.0.2
+ tinyqueue: 3.0.0
+
+ confbox@0.1.8: {}
consola@3.4.2: {}
@@ -14331,20 +13948,20 @@ snapshots:
convert-source-map@2.0.0: {}
- core-js-compat@3.42.0:
+ core-js-compat@3.48.0:
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.28.1
core-util-is@1.0.3: {}
- cosmiconfig@9.0.0(typescript@5.8.3):
+ cosmiconfig@9.0.0(typescript@5.9.3):
dependencies:
env-paths: 2.2.1
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.1
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.8.3
+ typescript: 5.9.3
cross-spawn@7.0.6:
dependencies:
@@ -14354,49 +13971,43 @@ snapshots:
cssesc@3.0.0: {}
- d3-array@1.2.4: {}
+ d3-array@3.2.4:
+ dependencies:
+ internmap: 2.0.3
- d3-geo@1.7.1:
+ d3-geo@3.1.1:
dependencies:
- d3-array: 1.2.4
+ d3-array: 3.2.4
d3-queue@3.0.7: {}
- d3-voronoi@1.1.2: {}
+ d3-voronoi@1.1.4: {}
dargs@7.0.0: {}
- data-view-buffer@1.0.1:
+ data-view-buffer@1.0.2:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
es-errors: 1.3.0
- is-data-view: 1.0.1
+ is-data-view: 1.0.2
- data-view-byte-length@1.0.1:
+ data-view-byte-length@1.0.2:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
es-errors: 1.3.0
- is-data-view: 1.0.1
+ is-data-view: 1.0.2
- data-view-byte-offset@1.0.0:
+ data-view-byte-offset@1.0.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
es-errors: 1.3.0
- is-data-view: 1.0.1
+ is-data-view: 1.0.2
dateformat@3.0.3: {}
de-indent@1.0.2:
optional: true
- debug@4.3.7:
- dependencies:
- ms: 2.1.3
-
- debug@4.4.0:
- dependencies:
- ms: 2.1.3
-
debug@4.4.3:
dependencies:
ms: 2.1.3
@@ -14408,9 +14019,9 @@ snapshots:
decamelize@1.2.0: {}
- decamelize@6.0.0: {}
+ decamelize@6.0.1: {}
- decode-named-character-reference@1.0.2:
+ decode-named-character-reference@1.3.0:
dependencies:
character-entities: 2.0.2
@@ -14418,24 +14029,24 @@ snapshots:
deep-equal@2.2.3:
dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
+ array-buffer-byte-length: 1.0.2
+ call-bind: 1.0.8
es-get-iterator: 1.1.3
- get-intrinsic: 1.2.4
- is-arguments: 1.1.1
- is-array-buffer: 3.0.4
- is-date-object: 1.0.5
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
+ get-intrinsic: 1.3.0
+ is-arguments: 1.2.0
+ is-array-buffer: 3.0.5
+ is-date-object: 1.1.0
+ is-regex: 1.2.1
+ is-shared-array-buffer: 1.0.4
isarray: 2.0.5
object-is: 1.1.6
object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.3
- side-channel: 1.0.6
- which-boxed-primitive: 1.1.0
+ object.assign: 4.1.7
+ regexp.prototype.flags: 1.5.4
+ side-channel: 1.1.0
+ which-boxed-primitive: 1.1.1
which-collection: 1.0.2
- which-typed-array: 1.1.16
+ which-typed-array: 1.1.20
deep-is@0.1.4: {}
@@ -14447,9 +14058,9 @@ snapshots:
define-data-property@1.1.4:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
es-errors: 1.3.0
- gopd: 1.1.0
+ gopd: 1.2.0
define-lazy-prop@2.0.0: {}
@@ -14463,12 +14074,12 @@ snapshots:
delayed-stream@1.0.0: {}
- dependency-tree@11.1.1:
+ dependency-tree@11.3.0:
dependencies:
commander: 12.1.0
- filing-cabinet: 5.0.3
+ filing-cabinet: 5.1.0
precinct: 12.2.0
- typescript: 5.8.3
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -14478,7 +14089,7 @@ snapshots:
detect-indent@5.0.0: {}
- detect-indent@7.0.1: {}
+ detect-indent@7.0.2: {}
detective-amd@6.0.1:
dependencies:
@@ -14496,11 +14107,11 @@ snapshots:
dependencies:
node-source-walk: 7.0.1
- detective-postcss@7.0.1(postcss@8.5.3):
+ detective-postcss@7.0.1(postcss@8.5.6):
dependencies:
is-url: 1.2.4
- postcss: 8.5.3
- postcss-values-parser: 6.0.2(postcss@8.5.3)
+ postcss: 8.5.6
+ postcss-values-parser: 6.0.2(postcss@8.5.6)
detective-sass@6.0.1:
dependencies:
@@ -14514,31 +14125,29 @@ snapshots:
detective-stylus@5.0.1: {}
- detective-typescript@14.0.0(typescript@5.8.3):
+ detective-typescript@14.0.0(typescript@5.9.3):
dependencies:
- '@typescript-eslint/typescript-estree': 8.31.1(typescript@5.8.3)
+ '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
ast-module-types: 6.0.1
node-source-walk: 7.0.1
- typescript: 5.8.3
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- detective-vue2@2.2.0(typescript@5.8.3):
+ detective-vue2@2.2.0(typescript@5.9.3):
dependencies:
'@dependents/detective-less': 5.0.1
- '@vue/compiler-sfc': 3.5.13
+ '@vue/compiler-sfc': 3.5.29
detective-es6: 5.0.1
detective-sass: 6.0.1
detective-scss: 5.0.1
detective-stylus: 5.0.1
- detective-typescript: 14.0.0(typescript@5.8.3)
- typescript: 5.8.3
+ detective-typescript: 14.0.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- diff-sequences@29.6.3: {}
-
- diff@5.2.0: {}
+ diff@5.2.2: {}
doctrine-temporary-fork@2.1.0:
dependencies:
@@ -14546,24 +14155,24 @@ snapshots:
documentation@14.0.3:
dependencies:
- '@babel/core': 7.26.0
- '@babel/generator': 7.26.2
- '@babel/parser': 7.26.2
- '@babel/traverse': 7.25.9
- '@babel/types': 7.26.0
- chalk: 5.3.0
- chokidar: 3.5.3
- diff: 5.2.0
+ '@babel/core': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/parser': 7.29.0
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
+ chalk: 5.6.2
+ chokidar: 3.6.0
+ diff: 5.2.2
doctrine-temporary-fork: 2.1.0
- git-url-parse: 13.1.0
+ git-url-parse: 13.1.1
github-slugger: 1.4.0
glob: 8.1.0
globals-docs: 2.4.1
- highlight.js: 11.10.0
+ highlight.js: 11.11.1
ini: 3.0.1
js-yaml: 4.1.1
konan: 2.1.1
- lodash: 4.17.21
+ lodash: 4.17.23
mdast-util-find-and-replace: 2.2.2
mdast-util-inject: 1.1.0
micromark-util-character: 1.2.0
@@ -14575,8 +14184,8 @@ snapshots:
remark-html: 15.0.2
remark-reference-links: 6.0.1
remark-toc: 8.0.1
- resolve: 1.22.8
- strip-json-comments: 5.0.1
+ resolve: 1.22.11
+ strip-json-comments: 5.0.3
unist-builder: 3.0.1
unist-util-visit: 4.1.2
vfile: 5.3.7
@@ -14584,7 +14193,7 @@ snapshots:
vfile-sort: 3.0.1
yargs: 17.7.2
optionalDependencies:
- '@vue/compiler-sfc': 3.5.13
+ '@vue/compiler-sfc': 3.5.29
vue-template-compiler: 2.7.16
transitivePeerDependencies:
- supports-color
@@ -14601,7 +14210,7 @@ snapshots:
dotignore@0.1.2:
dependencies:
- minimatch: 3.1.2
+ minimatch: 3.1.5
dunder-proto@1.0.1:
dependencies:
@@ -14609,43 +14218,41 @@ snapshots:
es-errors: 1.3.0
gopd: 1.2.0
- earcut@2.2.4: {}
+ earcut@3.0.2: {}
eastasianwidth@0.2.0: {}
ejs@3.1.10:
dependencies:
- jake: 10.8.7
+ jake: 10.9.4
- electron-to-chromium@1.5.145: {}
+ electron-to-chromium@1.5.302: {}
- emoji-regex@10.4.0: {}
+ emoji-regex@10.6.0: {}
emoji-regex@8.0.0: {}
emoji-regex@9.2.2: {}
- enabled@2.0.0: {}
-
encoding@0.1.13:
dependencies:
iconv-lite: 0.6.3
optional: true
- end-of-stream@1.4.4:
+ end-of-stream@1.4.5:
dependencies:
once: 1.4.0
- enhanced-resolve@5.18.1:
+ enhanced-resolve@5.19.0:
dependencies:
graceful-fs: 4.2.11
- tapable: 2.2.1
+ tapable: 2.3.0
enquirer@2.3.6:
dependencies:
ansi-colors: 4.1.3
- entities@4.5.0: {}
+ entities@7.0.1: {}
env-paths@2.2.1: {}
@@ -14655,73 +14262,71 @@ snapshots:
err-code@2.0.3: {}
- error-ex@1.3.2:
+ error-ex@1.3.4:
dependencies:
is-arrayish: 0.2.1
- es-abstract@1.23.5:
+ es-abstract@1.24.1:
dependencies:
- array-buffer-byte-length: 1.0.1
- arraybuffer.prototype.slice: 1.0.3
+ array-buffer-byte-length: 1.0.2
+ arraybuffer.prototype.slice: 1.0.4
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
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ data-view-buffer: 1.0.2
+ data-view-byte-length: 1.0.2
+ data-view-byte-offset: 1.0.1
+ es-define-property: 1.0.1
es-errors: 1.3.0
- es-object-atoms: 1.0.0
- es-set-tostringtag: 2.0.3
+ es-object-atoms: 1.1.1
+ es-set-tostringtag: 2.1.0
es-to-primitive: 1.3.0
- function.prototype.name: 1.1.6
- get-intrinsic: 1.2.4
- get-symbol-description: 1.0.2
+ function.prototype.name: 1.1.8
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ get-symbol-description: 1.1.0
globalthis: 1.0.4
- gopd: 1.1.0
+ gopd: 1.2.0
has-property-descriptors: 1.0.2
- has-proto: 1.1.0
+ has-proto: 1.2.0
has-symbols: 1.1.0
hasown: 2.0.2
- internal-slot: 1.0.7
- is-array-buffer: 3.0.4
+ internal-slot: 1.1.0
+ is-array-buffer: 3.0.5
is-callable: 1.2.7
- is-data-view: 1.0.1
+ is-data-view: 1.0.2
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
+ is-regex: 1.2.1
+ is-set: 2.0.3
+ is-shared-array-buffer: 1.0.4
+ is-string: 1.1.1
+ is-typed-array: 1.1.15
+ is-weakref: 1.1.1
+ math-intrinsics: 1.1.0
+ object-inspect: 1.13.4
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
+ object.assign: 4.1.7
+ own-keys: 1.0.1
+ regexp.prototype.flags: 1.5.4
+ safe-array-concat: 1.1.3
+ safe-push-apply: 1.0.0
+ safe-regex-test: 1.1.0
+ set-proto: 1.0.0
+ stop-iteration-iterator: 1.1.0
+ string.prototype.trim: 1.2.10
+ string.prototype.trimend: 1.0.9
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-buffer: 1.0.3
+ typed-array-byte-length: 1.0.3
+ typed-array-byte-offset: 1.0.4
typed-array-length: 1.0.7
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.16
+ unbox-primitive: 1.1.0
+ which-typed-array: 1.1.20
- es-check@9.0.0:
+ es-check@9.6.1:
dependencies:
- acorn: 8.14.1
- acorn-walk: 8.3.4
- browserslist: 4.24.4
- commander: 13.1.0
+ acorn: 8.16.0
fast-glob: 3.3.3
- lilconfig: 3.1.3
- supports-color: 8.1.1
- winston: 3.17.0
-
- es-define-property@1.0.0:
- dependencies:
- get-intrinsic: 1.2.4
es-define-property@1.0.1: {}
@@ -14729,30 +14334,20 @@ snapshots:
es-get-iterator@1.1.3:
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ call-bind: 1.0.8
+ get-intrinsic: 1.3.0
has-symbols: 1.1.0
- is-arguments: 1.1.1
+ is-arguments: 1.2.0
is-map: 2.0.3
is-set: 2.0.3
- is-string: 1.1.0
+ is-string: 1.1.1
isarray: 2.0.5
- stop-iteration-iterator: 1.0.0
-
- es-object-atoms@1.0.0:
- dependencies:
- es-errors: 1.3.0
+ stop-iteration-iterator: 1.1.0
es-object-atoms@1.1.1:
dependencies:
es-errors: 1.3.0
- es-set-tostringtag@2.0.3:
- dependencies:
- get-intrinsic: 1.2.4
- has-tostringtag: 1.0.2
- hasown: 2.0.2
-
es-set-tostringtag@2.1.0:
dependencies:
es-errors: 1.3.0
@@ -14760,39 +14355,44 @@ snapshots:
has-tostringtag: 1.0.2
hasown: 2.0.2
+ es-shim-unscopables@1.1.0:
+ dependencies:
+ hasown: 2.0.2
+
es-to-primitive@1.3.0:
dependencies:
is-callable: 1.2.7
- is-date-object: 1.0.5
- is-symbol: 1.1.0
+ is-date-object: 1.1.0
+ is-symbol: 1.1.1
- esbuild@0.25.3:
+ esbuild@0.27.3:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.3
- '@esbuild/android-arm': 0.25.3
- '@esbuild/android-arm64': 0.25.3
- '@esbuild/android-x64': 0.25.3
- '@esbuild/darwin-arm64': 0.25.3
- '@esbuild/darwin-x64': 0.25.3
- '@esbuild/freebsd-arm64': 0.25.3
- '@esbuild/freebsd-x64': 0.25.3
- '@esbuild/linux-arm': 0.25.3
- '@esbuild/linux-arm64': 0.25.3
- '@esbuild/linux-ia32': 0.25.3
- '@esbuild/linux-loong64': 0.25.3
- '@esbuild/linux-mips64el': 0.25.3
- '@esbuild/linux-ppc64': 0.25.3
- '@esbuild/linux-riscv64': 0.25.3
- '@esbuild/linux-s390x': 0.25.3
- '@esbuild/linux-x64': 0.25.3
- '@esbuild/netbsd-arm64': 0.25.3
- '@esbuild/netbsd-x64': 0.25.3
- '@esbuild/openbsd-arm64': 0.25.3
- '@esbuild/openbsd-x64': 0.25.3
- '@esbuild/sunos-x64': 0.25.3
- '@esbuild/win32-arm64': 0.25.3
- '@esbuild/win32-ia32': 0.25.3
- '@esbuild/win32-x64': 0.25.3
+ '@esbuild/aix-ppc64': 0.27.3
+ '@esbuild/android-arm': 0.27.3
+ '@esbuild/android-arm64': 0.27.3
+ '@esbuild/android-x64': 0.27.3
+ '@esbuild/darwin-arm64': 0.27.3
+ '@esbuild/darwin-x64': 0.27.3
+ '@esbuild/freebsd-arm64': 0.27.3
+ '@esbuild/freebsd-x64': 0.27.3
+ '@esbuild/linux-arm': 0.27.3
+ '@esbuild/linux-arm64': 0.27.3
+ '@esbuild/linux-ia32': 0.27.3
+ '@esbuild/linux-loong64': 0.27.3
+ '@esbuild/linux-mips64el': 0.27.3
+ '@esbuild/linux-ppc64': 0.27.3
+ '@esbuild/linux-riscv64': 0.27.3
+ '@esbuild/linux-s390x': 0.27.3
+ '@esbuild/linux-x64': 0.27.3
+ '@esbuild/netbsd-arm64': 0.27.3
+ '@esbuild/netbsd-x64': 0.27.3
+ '@esbuild/openbsd-arm64': 0.27.3
+ '@esbuild/openbsd-x64': 0.27.3
+ '@esbuild/openharmony-arm64': 0.27.3
+ '@esbuild/sunos-x64': 0.27.3
+ '@esbuild/win32-arm64': 0.27.3
+ '@esbuild/win32-ia32': 0.27.3
+ '@esbuild/win32-x64': 0.27.3
escalade@3.2.0: {}
@@ -14810,54 +14410,52 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-prettier@10.1.8(eslint@9.31.0):
+ eslint-config-prettier@10.1.8(eslint@10.0.2):
dependencies:
- eslint: 9.31.0
+ eslint: 10.0.2
- eslint-plugin-prettier@5.5.3(eslint-config-prettier@10.1.8(eslint@9.31.0))(eslint@9.31.0)(prettier@3.5.3):
+ eslint-plugin-prettier@5.5.5(eslint-config-prettier@10.1.8(eslint@10.0.2))(eslint@10.0.2)(prettier@3.8.1):
dependencies:
- eslint: 9.31.0
- prettier: 3.5.3
- prettier-linter-helpers: 1.0.0
- synckit: 0.11.11
+ eslint: 10.0.2
+ prettier: 3.8.1
+ prettier-linter-helpers: 1.0.1
+ synckit: 0.11.12
optionalDependencies:
- eslint-config-prettier: 10.1.8(eslint@9.31.0)
+ eslint-config-prettier: 10.1.8(eslint@10.0.2)
- eslint-scope@8.4.0:
+ eslint-scope@9.1.1:
dependencies:
+ '@types/esrecurse': 4.3.1
+ '@types/estree': 1.0.8
esrecurse: 4.3.0
estraverse: 5.3.0
eslint-visitor-keys@3.4.3: {}
- eslint-visitor-keys@4.2.0: {}
-
eslint-visitor-keys@4.2.1: {}
- eslint@9.31.0:
- dependencies:
- '@eslint-community/eslint-utils': 4.6.1(eslint@9.31.0)
- '@eslint-community/regexpp': 4.12.1
- '@eslint/config-array': 0.21.0
- '@eslint/config-helpers': 0.3.0
- '@eslint/core': 0.15.1
- '@eslint/eslintrc': 3.3.1
- '@eslint/js': 9.31.0
- '@eslint/plugin-kit': 0.3.4
- '@humanfs/node': 0.16.6
+ eslint-visitor-keys@5.0.1: {}
+
+ eslint@10.0.2:
+ dependencies:
+ '@eslint-community/eslint-utils': 4.9.1(eslint@10.0.2)
+ '@eslint-community/regexpp': 4.12.2
+ '@eslint/config-array': 0.23.2
+ '@eslint/config-helpers': 0.5.2
+ '@eslint/core': 1.1.0
+ '@eslint/plugin-kit': 0.6.0
+ '@humanfs/node': 0.16.7
'@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.4.2
- '@types/estree': 1.0.7
- '@types/json-schema': 7.0.15
- ajv: 6.12.6
- chalk: 4.1.2
+ '@humanwhocodes/retry': 0.4.3
+ '@types/estree': 1.0.8
+ ajv: 6.14.0
cross-spawn: 7.0.6
- debug: 4.4.0
+ debug: 4.4.3
escape-string-regexp: 4.0.0
- eslint-scope: 8.4.0
- eslint-visitor-keys: 4.2.1
- espree: 10.4.0
- esquery: 1.6.0
+ eslint-scope: 9.1.1
+ eslint-visitor-keys: 5.0.1
+ espree: 11.1.1
+ esquery: 1.7.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
file-entry-cache: 8.0.0
@@ -14867,8 +14465,7 @@ snapshots:
imurmurhash: 0.1.4
is-glob: 4.0.3
json-stable-stringify-without-jsonify: 1.0.1
- lodash.merge: 4.6.2
- minimatch: 3.1.2
+ minimatch: 10.2.4
natural-compare: 1.4.0
optionator: 0.9.4
transitivePeerDependencies:
@@ -14876,21 +14473,21 @@ snapshots:
esm@3.2.25: {}
- espree@10.3.0:
- dependencies:
- acorn: 8.15.0
- acorn-jsx: 5.3.2(acorn@8.15.0)
- eslint-visitor-keys: 4.2.0
-
espree@10.4.0:
dependencies:
- acorn: 8.15.0
- acorn-jsx: 5.3.2(acorn@8.15.0)
+ acorn: 8.16.0
+ acorn-jsx: 5.3.2(acorn@8.16.0)
eslint-visitor-keys: 4.2.1
+ espree@11.1.1:
+ dependencies:
+ acorn: 8.16.0
+ acorn-jsx: 5.3.2(acorn@8.16.0)
+ eslint-visitor-keys: 5.0.1
+
esprima@4.0.1: {}
- esquery@1.6.0:
+ esquery@1.7.0:
dependencies:
estraverse: 5.3.0
@@ -14906,33 +14503,21 @@ snapshots:
eventemitter3@4.0.7: {}
- eventemitter3@5.0.1: {}
+ eventemitter3@5.0.4: {}
execa@5.0.0:
dependencies:
cross-spawn: 7.0.6
- get-stream: 6.0.1
+ get-stream: 6.0.0
human-signals: 2.1.0
- is-stream: 2.0.1
+ is-stream: 2.0.0
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
- execa@8.0.1:
- dependencies:
- cross-spawn: 7.0.6
- get-stream: 8.0.1
- human-signals: 5.0.0
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.1.0
- onetime: 6.0.0
- signal-exit: 4.1.0
- strip-final-newline: 3.0.0
-
- exponential-backoff@3.1.1: {}
+ exponential-backoff@3.1.3: {}
extend@3.0.2: {}
@@ -14940,14 +14525,6 @@ snapshots:
fast-diff@1.3.0: {}
- fast-glob@3.3.2:
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.8
-
fast-glob@3.3.3:
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -14960,15 +14537,13 @@ snapshots:
fast-levenshtein@2.0.6: {}
- fastq@1.15.0:
+ fastq@1.20.1:
dependencies:
- reusify: 1.0.4
+ reusify: 1.1.0
- fdir@6.4.4(picomatch@4.0.2):
+ fdir@6.5.0(picomatch@4.0.3):
optionalDependencies:
- picomatch: 4.0.2
-
- fecha@4.2.3: {}
+ picomatch: 4.0.3
figures@3.2.0:
dependencies:
@@ -14978,23 +14553,23 @@ snapshots:
dependencies:
flat-cache: 4.0.1
- filelist@1.0.4:
+ filelist@1.0.6:
dependencies:
- minimatch: 5.1.6
+ minimatch: 5.1.9
- filing-cabinet@5.0.3:
+ filing-cabinet@5.1.0:
dependencies:
app-module-path: 2.2.0
commander: 12.1.0
- enhanced-resolve: 5.18.1
+ enhanced-resolve: 5.19.0
module-definition: 6.0.1
- module-lookup-amd: 9.0.4
- resolve: 1.22.10
+ module-lookup-amd: 9.1.1
+ resolve: 1.22.11
resolve-dependency-path: 4.0.1
sass-lookup: 6.1.0
stylus-lookup: 6.1.0
tsconfig-paths: 4.2.0
- typescript: 5.8.3
+ typescript: 5.9.3
fill-range@7.1.1:
dependencies:
@@ -15033,20 +14608,24 @@ snapshots:
path-exists: 5.0.0
unicorn-magic: 0.1.0
+ fix-dts-default-cjs-exports@1.0.1:
+ dependencies:
+ magic-string: 0.30.21
+ mlly: 1.8.0
+ rollup: 4.59.0
+
flat-cache@4.0.1:
dependencies:
- flatted: 3.3.2
+ flatted: 3.3.3
keyv: 4.5.4
flat@5.0.2: {}
- flatted@3.3.2: {}
-
- fn.name@1.1.0: {}
+ flatted@3.3.3: {}
- follow-redirects@1.15.6: {}
+ follow-redirects@1.15.11: {}
- for-each@0.3.3:
+ for-each@0.3.5:
dependencies:
is-callable: 1.2.7
@@ -15069,19 +14648,15 @@ snapshots:
fs-constants@1.0.0: {}
- fs-extra@11.3.0:
+ fs-extra@11.3.3:
dependencies:
graceful-fs: 4.2.11
- jsonfile: 6.1.0
+ jsonfile: 6.2.0
universalify: 2.0.1
- fs-minipass@2.1.0:
- dependencies:
- minipass: 3.3.6
-
fs-minipass@3.0.3:
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
fs.realpath@1.0.0: {}
@@ -15090,24 +14665,28 @@ snapshots:
function-bind@1.1.2: {}
- function.prototype.name@1.1.6:
+ function.prototype.name@1.1.8:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-abstract: 1.23.5
functions-have-names: 1.2.3
+ hasown: 2.0.2
+ is-callable: 1.2.7
functions-have-names@1.2.3: {}
+ generator-function@2.0.1: {}
+
gensync@1.0.0-beta.2: {}
geojson-equality-ts@1.0.2:
dependencies:
- '@types/geojson': 7946.0.14
+ '@types/geojson': 7946.0.16
- geojson-polygon-self-intersections@1.2.1:
+ geojson-polygon-self-intersections@3.0.0:
dependencies:
- rbush: 2.0.2
+ rbush: 4.0.1
geokdbush@2.0.1:
dependencies:
@@ -15120,15 +14699,7 @@ snapshots:
get-caller-file@2.0.5: {}
- get-east-asian-width@1.3.0: {}
-
- get-intrinsic@1.2.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
+ get-east-asian-width@1.5.0: {}
get-intrinsic@1.3.0:
dependencies:
@@ -15163,17 +14734,13 @@ snapshots:
get-stream@6.0.0: {}
- get-stream@6.0.1: {}
-
- get-stream@8.0.1: {}
-
- get-symbol-description@1.0.2:
+ get-symbol-description@1.1.0:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
es-errors: 1.3.0
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
- get-tsconfig@4.8.1:
+ get-tsconfig@4.13.6:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -15195,10 +14762,10 @@ snapshots:
git-up@7.0.0:
dependencies:
- is-ssh: 1.4.0
+ is-ssh: 1.4.1
parse-url: 8.1.0
- git-url-parse@13.1.0:
+ git-url-parse@13.1.1:
dependencies:
git-up: 7.0.0
@@ -15222,36 +14789,27 @@ snapshots:
dependencies:
is-glob: 4.0.3
- glob@10.5.0:
- dependencies:
- foreground-child: 3.3.1
- jackspeak: 3.4.3
- minimatch: 9.0.5
- minipass: 7.1.2
- package-json-from-dist: 1.0.1
- path-scurry: 1.11.1
-
glob@11.1.0:
dependencies:
foreground-child: 3.3.1
- jackspeak: 4.1.1
- minimatch: 10.1.1
- minipass: 7.1.2
+ jackspeak: 4.2.3
+ minimatch: 10.2.4
+ minipass: 7.1.3
package-json-from-dist: 1.0.1
- path-scurry: 2.0.0
+ path-scurry: 2.0.2
- glob@13.0.0:
+ glob@13.0.6:
dependencies:
- minimatch: 10.1.1
- minipass: 7.1.2
- path-scurry: 2.0.0
+ minimatch: 10.2.4
+ minipass: 7.1.3
+ path-scurry: 2.0.2
glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 3.1.2
+ minimatch: 3.1.5
once: 1.4.0
path-is-absolute: 1.0.1
@@ -15260,52 +14818,37 @@ snapshots:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
- minimatch: 5.1.6
+ minimatch: 5.1.9
once: 1.4.0
- glob@9.3.5:
- dependencies:
- fs.realpath: 1.0.0
- minimatch: 8.0.4
- minipass: 4.2.8
- path-scurry: 1.11.1
-
globals-docs@2.4.1: {}
- globals@11.12.0: {}
-
globals@14.0.0: {}
- globals@16.0.0: {}
+ globals@17.3.0: {}
globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
- gopd: 1.1.0
+ gopd: 1.2.0
- globby@14.0.2:
+ globby@14.1.0:
dependencies:
'@sindresorhus/merge-streams': 2.3.0
- fast-glob: 3.3.2
- ignore: 5.3.2
- path-type: 5.0.0
+ fast-glob: 3.3.3
+ ignore: 7.0.5
+ path-type: 6.0.0
slash: 5.1.0
- unicorn-magic: 0.1.0
+ unicorn-magic: 0.3.0
gonzales-pe@4.3.0:
dependencies:
minimist: 1.2.8
- gopd@1.1.0:
- dependencies:
- get-intrinsic: 1.2.4
-
gopd@1.2.0: {}
graceful-fs@4.2.11: {}
- graphemer@1.4.0: {}
-
handlebars@4.7.8:
dependencies:
minimist: 1.2.8
@@ -15317,22 +14860,23 @@ snapshots:
hard-rejection@2.1.0: {}
- has-bigints@1.0.2: {}
+ has-bigints@1.1.0: {}
- has-dynamic-import@2.1.0:
+ has-dynamic-import@2.1.1:
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
has-flag@4.0.0: {}
has-property-descriptors@1.0.2:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
- has-proto@1.1.0:
+ has-proto@1.2.0:
dependencies:
- call-bind: 1.0.7
+ dunder-proto: 1.0.1
has-symbols@1.1.0: {}
@@ -15349,7 +14893,7 @@ snapshots:
hast-util-from-parse5@7.1.2:
dependencies:
'@types/hast': 2.3.10
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
hastscript: 7.2.0
property-information: 6.5.0
vfile: 5.3.7
@@ -15381,7 +14925,7 @@ snapshots:
hast-util-to-html@8.0.4:
dependencies:
'@types/hast': 2.3.10
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
ccount: 2.0.1
comma-separated-tokens: 2.0.3
hast-util-raw: 7.2.3
@@ -15414,7 +14958,7 @@ snapshots:
he@1.2.0:
optional: true
- highlight.js@11.10.0: {}
+ highlight.js@11.11.1: {}
hosted-git-info@2.8.9: {}
@@ -15428,30 +14972,28 @@ snapshots:
hosted-git-info@9.0.2:
dependencies:
- lru-cache: 11.1.0
+ lru-cache: 11.2.6
html-void-elements@2.0.1: {}
- http-cache-semantics@4.1.1: {}
+ http-cache-semantics@4.2.0: {}
http-proxy-agent@7.0.2:
dependencies:
- agent-base: 7.1.1
- debug: 4.4.0
+ agent-base: 7.1.4
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
- https-proxy-agent@7.0.4:
+ https-proxy-agent@7.0.6:
dependencies:
- agent-base: 7.1.1
- debug: 4.4.0
+ agent-base: 7.1.4
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
human-signals@2.1.0: {}
- human-signals@5.0.0: {}
-
husky@9.1.7: {}
iconv-lite@0.6.3:
@@ -15459,7 +15001,7 @@ snapshots:
safer-buffer: 2.1.2
optional: true
- iconv-lite@0.7.0:
+ iconv-lite@0.7.2:
dependencies:
safer-buffer: 2.1.2
@@ -15467,13 +15009,13 @@ snapshots:
ignore-walk@8.0.0:
dependencies:
- minimatch: 10.1.1
+ minimatch: 10.2.4
ignore@5.3.2: {}
ignore@7.0.5: {}
- import-fresh@3.3.0:
+ import-fresh@3.3.1:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
@@ -15512,60 +15054,65 @@ snapshots:
validate-npm-package-license: 3.0.4
validate-npm-package-name: 6.0.2
- inquirer@12.9.6(@types/node@22.15.3):
+ inquirer@12.9.6(@types/node@25.3.2):
dependencies:
'@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@22.15.3)
- '@inquirer/prompts': 7.10.1(@types/node@22.15.3)
- '@inquirer/type': 3.0.10(@types/node@22.15.3)
+ '@inquirer/core': 10.3.2(@types/node@25.3.2)
+ '@inquirer/prompts': 7.10.1(@types/node@25.3.2)
+ '@inquirer/type': 3.0.10(@types/node@25.3.2)
mute-stream: 2.0.0
run-async: 4.0.6
rxjs: 7.8.2
optionalDependencies:
- '@types/node': 22.15.3
+ '@types/node': 25.3.2
- internal-slot@1.0.7:
+ internal-slot@1.1.0:
dependencies:
es-errors: 1.3.0
hasown: 2.0.2
- side-channel: 1.0.6
+ side-channel: 1.1.0
- ip@2.0.1: {}
+ internmap@2.0.3: {}
+
+ ip-address@10.1.0: {}
is-absolute@1.0.0:
dependencies:
is-relative: 1.0.0
is-windows: 1.0.2
- is-arguments@1.1.1:
+ is-arguments@1.2.0:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
- is-array-buffer@3.0.4:
+ is-array-buffer@3.0.5:
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
is-arrayish@0.2.1: {}
- is-arrayish@0.3.2: {}
-
- is-async-function@2.0.0:
+ is-async-function@2.1.1:
dependencies:
+ async-function: 1.0.0
+ call-bound: 1.0.4
+ get-proto: 1.0.1
has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
is-bigint@1.1.0:
dependencies:
- has-bigints: 1.0.2
+ has-bigints: 1.1.0
is-binary-path@2.1.0:
dependencies:
- binary-extensions: 2.2.0
+ binary-extensions: 2.3.0
- is-boolean-object@1.2.0:
+ is-boolean-object@1.2.2:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
is-buffer@2.0.5: {}
@@ -15576,41 +15123,42 @@ snapshots:
dependencies:
ci-info: 3.9.0
- is-core-module@2.13.1:
- dependencies:
- hasown: 2.0.2
-
is-core-module@2.16.1:
dependencies:
hasown: 2.0.2
- is-data-view@1.0.1:
+ is-data-view@1.0.2:
dependencies:
- is-typed-array: 1.1.13
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
+ is-typed-array: 1.1.15
- is-date-object@1.0.5:
+ is-date-object@1.1.0:
dependencies:
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
is-docker@2.2.1: {}
is-extglob@2.1.1: {}
- is-finalizationregistry@1.1.0:
+ is-finalizationregistry@1.1.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
is-fullwidth-code-point@3.0.0: {}
- is-fullwidth-code-point@4.0.0: {}
-
- is-fullwidth-code-point@5.0.0:
+ is-fullwidth-code-point@5.1.0:
dependencies:
- get-east-asian-width: 1.3.0
+ get-east-asian-width: 1.5.0
- is-generator-function@1.0.10:
+ is-generator-function@1.1.2:
dependencies:
+ call-bound: 1.0.4
+ generator-function: 2.0.1
+ get-proto: 1.0.1
has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
is-glob@4.0.3:
dependencies:
@@ -15624,9 +15172,9 @@ snapshots:
is-negative-zero@2.0.3: {}
- is-number-object@1.1.0:
+ is-number-object@1.1.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
is-number@7.0.0: {}
@@ -15643,12 +15191,14 @@ snapshots:
is-reference@1.2.1:
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
- is-regex@1.1.4:
+ is-regex@1.2.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
+ gopd: 1.2.0
has-tostringtag: 1.0.2
+ hasown: 2.0.2
is-regexp@1.0.0: {}
@@ -15658,38 +15208,34 @@ snapshots:
is-set@2.0.3: {}
- is-shared-array-buffer@1.0.3:
+ is-shared-array-buffer@1.0.4:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
- is-ssh@1.4.0:
+ is-ssh@1.4.1:
dependencies:
- protocols: 2.0.1
+ protocols: 2.0.2
is-stream@2.0.0: {}
- is-stream@2.0.1: {}
-
- is-stream@3.0.0: {}
-
- is-string@1.1.0:
+ is-string@1.1.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
has-tostringtag: 1.0.2
- is-symbol@1.1.0:
+ is-symbol@1.1.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
has-symbols: 1.1.0
- safe-regex-test: 1.0.3
+ safe-regex-test: 1.1.0
is-text-path@1.0.1:
dependencies:
text-extensions: 1.9.0
- is-typed-array@1.1.13:
+ is-typed-array@1.1.15:
dependencies:
- which-typed-array: 1.1.16
+ which-typed-array: 1.1.20
is-typedarray@1.0.0: {}
@@ -15705,14 +15251,14 @@ snapshots:
is-weakmap@2.0.2: {}
- is-weakref@1.0.2:
+ is-weakref@1.1.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
- is-weakset@2.0.3:
+ is-weakset@2.0.4:
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
is-windows@1.0.2: {}
@@ -15726,31 +15272,19 @@ snapshots:
isexe@2.0.0: {}
- isexe@3.1.1: {}
+ isexe@3.1.5: {}
- jackspeak@3.4.3:
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
+ isexe@4.0.0: {}
- jackspeak@4.1.1:
+ jackspeak@4.2.3:
dependencies:
- '@isaacs/cliui': 8.0.2
+ '@isaacs/cliui': 9.0.0
- jake@10.8.7:
+ jake@10.9.4:
dependencies:
async: 3.2.6
- chalk: 4.1.2
- filelist: 1.0.4
- minimatch: 3.1.2
-
- jest-diff@29.7.0:
- dependencies:
- chalk: 4.1.2
- diff-sequences: 29.6.3
- jest-get-type: 29.6.3
- pretty-format: 29.7.0
+ filelist: 1.0.6
+ picocolors: 1.1.1
jest-diff@30.2.0:
dependencies:
@@ -15759,8 +15293,6 @@ snapshots:
chalk: 4.1.2
pretty-format: 30.2.0
- jest-get-type@29.6.3: {}
-
joycon@3.1.1: {}
js-tokens@4.0.0: {}
@@ -15774,8 +15306,6 @@ snapshots:
dependencies:
argparse: 2.0.1
- jsesc@3.0.2: {}
-
jsesc@3.1.0: {}
json-buffer@3.0.1: {}
@@ -15800,7 +15330,7 @@ snapshots:
jsonc-parser@3.2.0: {}
- jsonfile@6.1.0:
+ jsonfile@6.2.0:
dependencies:
universalify: 2.0.1
optionalDependencies:
@@ -15828,20 +15358,18 @@ snapshots:
konan@2.1.1:
dependencies:
- '@babel/parser': 7.26.2
- '@babel/traverse': 7.25.9
+ '@babel/parser': 7.29.0
+ '@babel/traverse': 7.29.0
transitivePeerDependencies:
- supports-color
- kuler@2.0.0: {}
-
- lerna@9.0.3(@types/node@22.15.3):
+ lerna@9.0.4(@types/node@25.3.2):
dependencies:
- '@lerna/create': 9.0.3(@types/node@22.15.3)(typescript@5.8.3)
+ '@lerna/create': 9.0.4(@types/node@25.3.2)(typescript@5.9.3)
'@npmcli/arborist': 9.1.6
'@npmcli/package-json': 7.0.2
- '@npmcli/run-script': 10.0.2
- '@nx/devkit': 22.1.3(nx@22.1.3)
+ '@npmcli/run-script': 10.0.3
+ '@nx/devkit': 22.5.2(nx@22.5.2)
'@octokit/plugin-enterprise-rest': 6.0.1
'@octokit/rest': 20.1.2
aproba: 2.0.0
@@ -15854,11 +15382,11 @@ snapshots:
conventional-changelog-angular: 7.0.0
conventional-changelog-core: 5.0.1
conventional-recommended-bump: 7.0.1
- cosmiconfig: 9.0.0(typescript@5.8.3)
+ cosmiconfig: 9.0.0(typescript@5.9.3)
dedent: 1.5.3
envinfo: 7.13.0
execa: 5.0.0
- fs-extra: 11.3.0
+ fs-extra: 11.3.3
get-port: 5.1.1
get-stream: 6.0.0
git-url-parse: 14.0.0
@@ -15867,7 +15395,7 @@ snapshots:
import-local: 3.1.0
ini: 1.3.8
init-package-json: 8.2.2
- inquirer: 12.9.6(@types/node@22.15.3)
+ inquirer: 12.9.6(@types/node@25.3.2)
is-ci: 3.0.1
is-stream: 2.0.0
jest-diff: 30.2.0
@@ -15882,7 +15410,7 @@ snapshots:
npm-package-arg: 13.0.1
npm-packlist: 10.0.3
npm-registry-fetch: 19.1.0
- nx: 22.1.3
+ nx: 22.5.2
p-map: 4.0.0
p-map-series: 2.1.0
p-pipe: 3.1.0
@@ -15893,18 +15421,18 @@ snapshots:
pify: 5.0.0
read-cmd-shim: 4.0.0
resolve-from: 5.0.0
- rimraf: 4.4.1
+ rimraf: 6.1.3
semver: 7.7.2
set-blocking: 2.0.0
signal-exit: 3.0.7
slash: 3.0.0
ssri: 12.0.0
string-width: 4.2.3
- tar: 6.2.1
+ tar: 7.5.7
temp-dir: 1.0.0
through: 2.3.8
tinyglobby: 0.2.12
- typescript: 5.8.3
+ typescript: 5.9.3
upath: 2.0.1
uuid: 11.1.0
validate-npm-package-license: 3.0.4
@@ -15937,12 +15465,12 @@ snapshots:
libnpmpublish@11.1.2:
dependencies:
'@npmcli/package-json': 7.0.2
- ci-info: 4.0.0
+ ci-info: 4.4.0
npm-package-arg: 13.0.1
npm-registry-fetch: 19.1.0
proc-log: 5.0.0
semver: 7.7.2
- sigstore: 4.0.0
+ sigstore: 4.1.0
ssri: 12.0.0
transitivePeerDependencies:
- supports-color
@@ -15953,29 +15481,24 @@ snapshots:
lines-and-columns@2.0.3: {}
- lint-staged@15.5.1:
+ lint-staged@16.2.7:
dependencies:
- chalk: 5.4.1
- commander: 13.1.0
- debug: 4.4.0
- execa: 8.0.1
- lilconfig: 3.1.3
- listr2: 8.3.2
+ commander: 14.0.3
+ listr2: 9.0.5
micromatch: 4.0.8
+ nano-spawn: 2.0.0
pidtree: 0.6.0
string-argv: 0.3.2
- yaml: 2.7.1
- transitivePeerDependencies:
- - supports-color
+ yaml: 2.8.2
- listr2@8.3.2:
+ listr2@9.0.5:
dependencies:
- cli-truncate: 4.0.0
+ cli-truncate: 5.1.1
colorette: 2.0.20
- eventemitter3: 5.0.1
+ eventemitter3: 5.0.4
log-update: 6.1.0
rfdc: 1.4.1
- wrap-ansi: 9.0.0
+ wrap-ansi: 9.0.2
load-json-file@4.0.0:
dependencies:
@@ -16016,41 +15539,26 @@ snapshots:
lodash.ismatch@4.4.0: {}
- lodash.merge@4.6.2: {}
-
- lodash.sortby@4.7.0: {}
-
- lodash@4.17.21: {}
+ lodash@4.17.23: {}
log-symbols@4.1.0:
dependencies:
- chalk: 4.1.2
+ chalk: 4.1.0
is-unicode-supported: 0.1.0
log-update@6.1.0:
dependencies:
- ansi-escapes: 7.0.0
+ ansi-escapes: 7.3.0
cli-cursor: 5.0.0
- slice-ansi: 7.1.0
- strip-ansi: 7.1.0
- wrap-ansi: 9.0.0
-
- logform@2.7.0:
- dependencies:
- '@colors/colors': 1.6.0
- '@types/triple-beam': 1.3.5
- fecha: 4.2.3
- ms: 2.1.3
- safe-stable-stringify: 2.5.0
- triple-beam: 1.4.1
+ slice-ansi: 7.1.2
+ strip-ansi: 7.2.0
+ wrap-ansi: 9.0.2
longest-streak@3.1.0: {}
lru-cache@10.4.3: {}
- lru-cache@11.1.0: {}
-
- lru-cache@11.2.2: {}
+ lru-cache@11.2.6: {}
lru-cache@5.1.1:
dependencies:
@@ -16060,13 +15568,9 @@ snapshots:
dependencies:
yallist: 4.0.0
- magic-string@0.30.14:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
-
- magic-string@0.30.17:
+ magic-string@0.30.21:
dependencies:
- '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/sourcemap-codec': 1.5.5
make-dir@2.1.0:
dependencies:
@@ -16077,12 +15581,12 @@ snapshots:
dependencies:
semver: 7.7.2
- make-fetch-happen@14.0.3:
+ make-fetch-happen@15.0.2:
dependencies:
- '@npmcli/agent': 3.0.0
- cacache: 19.0.1
- http-cache-semantics: 4.1.1
- minipass: 7.1.2
+ '@npmcli/agent': 4.0.0
+ cacache: 20.0.3
+ http-cache-semantics: 4.2.0
+ minipass: 7.1.3
minipass-fetch: 4.0.1
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
@@ -16093,19 +15597,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- make-fetch-happen@15.0.2:
+ make-fetch-happen@15.0.4:
dependencies:
+ '@gar/promise-retry': 1.0.2
'@npmcli/agent': 4.0.0
cacache: 20.0.3
- http-cache-semantics: 4.1.1
- minipass: 7.1.2
- minipass-fetch: 4.0.1
+ http-cache-semantics: 4.2.0
+ minipass: 7.1.3
+ minipass-fetch: 5.0.2
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
negotiator: 1.0.0
- proc-log: 5.0.0
- promise-retry: 2.0.1
- ssri: 12.0.0
+ proc-log: 6.1.0
+ ssri: 13.0.1
transitivePeerDependencies:
- supports-color
@@ -16115,14 +15619,14 @@ snapshots:
map-obj@4.3.0: {}
- markdown-table@3.0.3: {}
+ markdown-table@3.0.4: {}
math-intrinsics@1.1.0: {}
mdast-util-definitions@5.1.2:
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-visit: 4.1.2
mdast-util-find-and-replace@2.2.2:
@@ -16135,8 +15639,8 @@ snapshots:
mdast-util-from-markdown@1.3.1:
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
- decode-named-character-reference: 1.0.2
+ '@types/unist': 2.0.11
+ decode-named-character-reference: 1.3.0
mdast-util-to-string: 3.2.0
micromark: 3.2.0
micromark-util-decode-numeric-character-reference: 1.1.0
@@ -16170,7 +15674,7 @@ snapshots:
mdast-util-gfm-table@1.0.7:
dependencies:
'@types/mdast': 3.0.15
- markdown-table: 3.0.3
+ markdown-table: 3.0.4
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
transitivePeerDependencies:
@@ -16216,7 +15720,7 @@ snapshots:
mdast-util-to-markdown@1.5.0:
dependencies:
'@types/mdast': 3.0.15
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
longest-streak: 3.1.0
mdast-util-phrasing: 3.0.1
mdast-util-to-string: 3.2.0
@@ -16240,7 +15744,7 @@ snapshots:
unist-util-is: 5.2.1
unist-util-visit: 4.1.2
- meow@13.2.0: {}
+ meow@14.1.0: {}
meow@8.1.2:
dependencies:
@@ -16254,7 +15758,7 @@ snapshots:
redent: 3.0.0
trim-newlines: 3.0.1
type-fest: 0.18.1
- yargs-parser: 20.2.4
+ yargs-parser: 20.2.9
merge-stream@2.0.0: {}
@@ -16264,7 +15768,7 @@ snapshots:
micromark-core-commonmark@1.1.0:
dependencies:
- decode-named-character-reference: 1.0.2
+ decode-named-character-reference: 1.3.0
micromark-factory-destination: 1.1.0
micromark-factory-label: 1.1.0
micromark-factory-space: 1.1.0
@@ -16397,7 +15901,7 @@ snapshots:
micromark-util-decode-string@1.1.0:
dependencies:
- decode-named-character-reference: 1.0.2
+ decode-named-character-reference: 1.3.0
micromark-util-character: 1.2.0
micromark-util-decode-numeric-character-reference: 1.1.0
micromark-util-symbol: 1.1.0
@@ -16434,8 +15938,8 @@ snapshots:
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.4.0
- decode-named-character-reference: 1.0.2
+ debug: 4.4.3
+ decode-named-character-reference: 1.3.0
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
micromark-util-character: 1.2.0
@@ -16466,37 +15970,27 @@ snapshots:
mimic-fn@2.1.0: {}
- mimic-fn@4.0.0: {}
-
mimic-function@5.0.1: {}
min-indent@1.0.1: {}
minimatch@10.1.1:
dependencies:
- '@isaacs/brace-expansion': 5.0.0
+ '@isaacs/brace-expansion': 5.0.1
- minimatch@3.0.5:
+ minimatch@10.2.4:
dependencies:
- brace-expansion: 1.1.12
+ brace-expansion: 5.0.3
- minimatch@3.1.2:
+ minimatch@3.0.5:
dependencies:
brace-expansion: 1.1.12
- minimatch@5.1.6:
+ minimatch@3.1.5:
dependencies:
- brace-expansion: 2.0.2
-
- minimatch@8.0.4:
- dependencies:
- brace-expansion: 2.0.2
-
- minimatch@9.0.3:
- dependencies:
- brace-expansion: 2.0.2
+ brace-expansion: 1.1.12
- minimatch@9.0.5:
+ minimatch@5.1.9:
dependencies:
brace-expansion: 2.0.2
@@ -16510,16 +16004,24 @@ snapshots:
minipass-collect@2.0.1:
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
minipass-fetch@4.0.1:
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
minipass-sized: 1.0.3
minizlib: 3.1.0
optionalDependencies:
encoding: 0.1.13
+ minipass-fetch@5.0.2:
+ dependencies:
+ minipass: 7.1.3
+ minipass-sized: 2.0.0
+ minizlib: 3.1.0
+ optionalDependencies:
+ iconv-lite: 0.7.2
+
minipass-flush@1.0.5:
dependencies:
minipass: 3.3.6
@@ -16532,38 +16034,38 @@ snapshots:
dependencies:
minipass: 3.3.6
- minipass@3.3.6:
+ minipass-sized@2.0.0:
dependencies:
- yallist: 4.0.0
-
- minipass@4.2.8: {}
-
- minipass@5.0.0: {}
-
- minipass@7.1.2: {}
+ minipass: 7.1.3
- minizlib@2.1.2:
+ minipass@3.3.6:
dependencies:
- minipass: 3.3.6
yallist: 4.0.0
+ minipass@7.1.3: {}
+
minizlib@3.1.0:
dependencies:
- minipass: 7.1.2
-
- mkdirp@1.0.4: {}
+ minipass: 7.1.3
mkdirp@3.0.1: {}
+ mlly@1.8.0:
+ dependencies:
+ acorn: 8.16.0
+ pathe: 2.0.3
+ pkg-types: 1.3.1
+ ufo: 1.6.3
+
mock-property@1.1.0:
dependencies:
define-data-property: 1.1.4
functions-have-names: 1.2.3
- gopd: 1.1.0
+ gopd: 1.2.0
has-property-descriptors: 1.0.2
hasown: 2.0.2
isarray: 2.0.5
- object-inspect: 1.13.3
+ object-inspect: 1.13.4
modify-values@1.0.1: {}
@@ -16572,11 +16074,10 @@ snapshots:
ast-module-types: 6.0.1
node-source-walk: 7.0.1
- module-lookup-amd@9.0.4:
+ module-lookup-amd@9.1.1:
dependencies:
commander: 12.1.0
- glob: 7.2.3
- requirejs: 2.3.7
+ requirejs: 2.3.8
requirejs-config-file: 4.0.0
mri@1.2.0: {}
@@ -16589,7 +16090,7 @@ snapshots:
array-differ: 3.0.0
array-union: 2.1.0
arrify: 2.0.1
- minimatch: 3.1.2
+ minimatch: 3.0.5
mute-stream@2.0.0: {}
@@ -16599,9 +16100,9 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- nanoid@3.3.11: {}
+ nano-spawn@2.0.0: {}
- nanoid@3.3.8: {}
+ nanoid@3.3.11: {}
natural-compare@1.4.0: {}
@@ -16609,45 +16110,56 @@ snapshots:
neo-async@2.6.2: {}
- node-gyp@11.5.0:
+ node-exports-info@1.6.0:
+ dependencies:
+ array.prototype.flatmap: 1.3.3
+ es-errors: 1.3.0
+ object.entries: 1.1.9
+ semver: 6.3.1
+
+ node-gyp@12.2.0:
dependencies:
env-paths: 2.2.1
- exponential-backoff: 3.1.1
+ exponential-backoff: 3.1.3
graceful-fs: 4.2.11
- make-fetch-happen: 14.0.3
- nopt: 8.1.0
- proc-log: 5.0.0
+ make-fetch-happen: 15.0.2
+ nopt: 9.0.0
+ proc-log: 6.1.0
semver: 7.7.2
- tar: 7.5.2
- tinyglobby: 0.2.13
- which: 5.0.0
+ tar: 7.5.7
+ tinyglobby: 0.2.12
+ which: 6.0.1
transitivePeerDependencies:
- supports-color
node-machine-id@1.1.12: {}
- node-releases@2.0.19: {}
+ node-releases@2.0.27: {}
node-source-walk@7.0.1:
dependencies:
- '@babel/parser': 7.27.0
+ '@babel/parser': 7.29.0
nopt@8.1.0:
dependencies:
abbrev: 3.0.1
+ nopt@9.0.0:
+ dependencies:
+ abbrev: 4.0.0
+
normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.10
+ resolve: 1.22.11
semver: 5.7.2
validate-npm-package-license: 3.0.4
normalize-package-data@3.0.3:
dependencies:
hosted-git-info: 4.1.0
- is-core-module: 2.13.1
- semver: 7.6.3
+ is-core-module: 2.16.1
+ semver: 7.7.2
validate-npm-package-license: 3.0.4
normalize-path@3.0.0: {}
@@ -16710,7 +16222,7 @@ snapshots:
'@npmcli/redact': 3.2.2
jsonparse: 1.3.1
make-fetch-happen: 15.0.2
- minipass: 7.1.2
+ minipass: 7.1.3
minipass-fetch: 4.0.1
minizlib: 3.1.0
npm-package-arg: 13.0.1
@@ -16722,23 +16234,19 @@ snapshots:
dependencies:
path-key: 3.1.1
- npm-run-path@5.1.0:
- dependencies:
- path-key: 4.0.0
-
- nx@22.1.3:
+ nx@22.5.2:
dependencies:
'@napi-rs/wasm-runtime': 0.2.4
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.2
'@zkochan/js-yaml': 0.0.7
- axios: 1.13.2
- chalk: 4.1.2
+ axios: 1.13.5
cli-cursor: 3.1.0
cli-spinners: 2.6.1
cliui: 8.0.1
dotenv: 16.4.7
dotenv-expand: 11.0.7
+ ejs: 3.1.10
enquirer: 2.3.6
figures: 3.2.0
flat: 5.0.2
@@ -16747,11 +16255,12 @@ snapshots:
jest-diff: 30.2.0
jsonc-parser: 3.2.0
lines-and-columns: 2.0.3
- minimatch: 9.0.3
+ minimatch: 10.1.1
node-machine-id: 1.1.12
npm-run-path: 4.0.1
open: 8.4.2
ora: 5.3.0
+ picocolors: 1.1.1
resolve.exports: 2.0.3
semver: 7.7.2
string-width: 4.2.3
@@ -16760,57 +16269,58 @@ snapshots:
tree-kill: 1.2.2
tsconfig-paths: 4.2.0
tslib: 2.8.1
- yaml: 2.7.1
+ yaml: 2.8.2
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- '@nx/nx-darwin-arm64': 22.1.3
- '@nx/nx-darwin-x64': 22.1.3
- '@nx/nx-freebsd-x64': 22.1.3
- '@nx/nx-linux-arm-gnueabihf': 22.1.3
- '@nx/nx-linux-arm64-gnu': 22.1.3
- '@nx/nx-linux-arm64-musl': 22.1.3
- '@nx/nx-linux-x64-gnu': 22.1.3
- '@nx/nx-linux-x64-musl': 22.1.3
- '@nx/nx-win32-arm64-msvc': 22.1.3
- '@nx/nx-win32-x64-msvc': 22.1.3
+ '@nx/nx-darwin-arm64': 22.5.2
+ '@nx/nx-darwin-x64': 22.5.2
+ '@nx/nx-freebsd-x64': 22.5.2
+ '@nx/nx-linux-arm-gnueabihf': 22.5.2
+ '@nx/nx-linux-arm64-gnu': 22.5.2
+ '@nx/nx-linux-arm64-musl': 22.5.2
+ '@nx/nx-linux-x64-gnu': 22.5.2
+ '@nx/nx-linux-x64-musl': 22.5.2
+ '@nx/nx-win32-arm64-msvc': 22.5.2
+ '@nx/nx-win32-x64-msvc': 22.5.2
transitivePeerDependencies:
- debug
object-assign@4.1.1: {}
- object-inspect@1.13.3: {}
+ object-inspect@1.13.4: {}
object-is@1.1.6:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
object-keys@1.1.1: {}
- object.assign@4.1.5:
+ object.assign@4.1.7:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
+ es-object-atoms: 1.1.1
has-symbols: 1.1.0
object-keys: 1.1.1
- once@1.4.0:
+ object.entries@1.1.9:
dependencies:
- wrappy: 1.0.2
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ define-properties: 1.2.1
+ es-object-atoms: 1.1.1
- one-time@1.0.0:
+ once@1.4.0:
dependencies:
- fn.name: 1.1.0
+ wrappy: 1.0.2
onetime@5.1.2:
dependencies:
mimic-fn: 2.1.0
- onetime@6.0.0:
- dependencies:
- mimic-fn: 4.0.0
-
onetime@7.0.0:
dependencies:
mimic-function: 5.0.1
@@ -16833,14 +16343,20 @@ snapshots:
ora@5.3.0:
dependencies:
bl: 4.1.0
- chalk: 4.1.2
+ chalk: 4.1.0
cli-cursor: 3.1.0
- cli-spinners: 2.9.2
+ cli-spinners: 2.6.1
is-interactive: 1.0.0
log-symbols: 4.1.0
strip-ansi: 6.0.1
wcwidth: 1.0.1
+ own-keys@1.0.1:
+ dependencies:
+ get-intrinsic: 1.3.0
+ object-keys: 1.1.1
+ safe-push-apply: 1.0.0
+
p-filter@2.1.0:
dependencies:
p-map: 2.1.0
@@ -16861,7 +16377,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.2.2
p-locate@2.0.0:
dependencies:
@@ -16918,41 +16434,41 @@ snapshots:
'@npmcli/installed-package-contents': 3.0.0
'@npmcli/package-json': 7.0.2
'@npmcli/promise-spawn': 8.0.3
- '@npmcli/run-script': 10.0.2
+ '@npmcli/run-script': 10.0.3
cacache: 20.0.3
fs-minipass: 3.0.3
- minipass: 7.1.2
+ minipass: 7.1.3
npm-package-arg: 13.0.1
npm-packlist: 10.0.3
npm-pick-manifest: 10.0.0
npm-registry-fetch: 19.1.0
proc-log: 5.0.0
promise-retry: 2.0.1
- sigstore: 4.0.0
+ sigstore: 4.1.0
ssri: 12.0.0
- tar: 7.5.2
+ tar: 7.5.7
transitivePeerDependencies:
- supports-color
- pacote@21.0.4:
+ pacote@21.4.0:
dependencies:
- '@npmcli/git': 7.0.1
+ '@gar/promise-retry': 1.0.2
+ '@npmcli/git': 7.0.2
'@npmcli/installed-package-contents': 4.0.0
'@npmcli/package-json': 7.0.2
'@npmcli/promise-spawn': 9.0.1
- '@npmcli/run-script': 10.0.2
+ '@npmcli/run-script': 10.0.3
cacache: 20.0.3
fs-minipass: 3.0.3
- minipass: 7.1.2
+ minipass: 7.1.3
npm-package-arg: 13.0.1
npm-packlist: 10.0.3
npm-pick-manifest: 11.0.3
npm-registry-fetch: 19.1.0
proc-log: 6.1.0
- promise-retry: 2.0.1
- sigstore: 4.0.0
- ssri: 13.0.0
- tar: 7.5.2
+ sigstore: 4.1.0
+ ssri: 13.0.1
+ tar: 7.5.7
transitivePeerDependencies:
- supports-color
@@ -16974,23 +16490,23 @@ snapshots:
parse-json@4.0.0:
dependencies:
- error-ex: 1.3.2
+ error-ex: 1.3.4
json-parse-better-errors: 1.0.2
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.26.2
- error-ex: 1.3.2
+ '@babel/code-frame': 7.29.0
+ error-ex: 1.3.4
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- parse-path@7.0.0:
+ parse-path@7.1.0:
dependencies:
- protocols: 2.0.1
+ protocols: 2.0.2
parse-url@8.1.0:
dependencies:
- parse-path: 7.0.0
+ parse-path: 7.1.0
parse5@6.0.1: {}
@@ -17004,8 +16520,6 @@ snapshots:
path-key@3.1.1: {}
- path-key@4.0.0: {}
-
path-parse@1.0.7: {}
path-root-regex@0.1.2: {}
@@ -17014,27 +16528,24 @@ snapshots:
dependencies:
path-root-regex: 0.1.2
- path-scurry@1.11.1:
- dependencies:
- lru-cache: 10.4.3
- minipass: 7.1.2
-
- path-scurry@2.0.0:
+ path-scurry@2.0.2:
dependencies:
- lru-cache: 11.1.0
- minipass: 7.1.2
+ lru-cache: 11.2.6
+ minipass: 7.1.3
path-type@3.0.0:
dependencies:
pify: 3.0.0
- path-type@5.0.0: {}
+ path-type@6.0.0: {}
+
+ pathe@2.0.3: {}
picocolors@1.1.1: {}
picomatch@2.3.1: {}
- picomatch@4.0.2: {}
+ picomatch@4.0.3: {}
pidtree@0.6.0: {}
@@ -17048,52 +16559,54 @@ snapshots:
pify@6.1.0: {}
- pirates@4.0.6: {}
+ pirates@4.0.7: {}
pkg-dir@4.2.0:
dependencies:
find-up: 4.1.0
+ pkg-types@1.3.1:
+ dependencies:
+ confbox: 0.1.8
+ mlly: 1.8.0
+ pathe: 2.0.3
+
platform@1.3.6: {}
- point-in-polygon-hao@1.1.0: {}
+ point-in-polygon-hao@1.2.4:
+ dependencies:
+ robust-predicates: 3.0.2
point-in-polygon@1.1.0: {}
polyclip-ts@0.16.8:
dependencies:
- bignumber.js: 9.1.2
+ bignumber.js: 9.3.1
splaytree-ts: 1.0.2
- possible-typed-array-names@1.0.0: {}
+ possible-typed-array-names@1.1.0: {}
- postcss-load-config@6.0.1(postcss@8.5.3)(tsx@4.19.4)(yaml@2.7.1):
+ postcss-load-config@6.0.1(postcss@8.5.6)(tsx@4.21.0)(yaml@2.8.2):
dependencies:
lilconfig: 3.1.3
optionalDependencies:
- postcss: 8.5.3
- tsx: 4.19.4
- yaml: 2.7.1
+ postcss: 8.5.6
+ tsx: 4.21.0
+ yaml: 2.8.2
postcss-selector-parser@7.1.1:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-values-parser@6.0.2(postcss@8.5.3):
+ postcss-values-parser@6.0.2(postcss@8.5.6):
dependencies:
color-name: 1.1.4
is-url-superb: 4.0.0
- postcss: 8.5.3
+ postcss: 8.5.6
quote-unquote: 1.0.0
- postcss@8.4.49:
- dependencies:
- nanoid: 3.3.8
- picocolors: 1.1.1
- source-map-js: 1.2.1
-
- postcss@8.5.3:
+ postcss@8.5.6:
dependencies:
nanoid: 3.3.11
picocolors: 1.1.1
@@ -17106,32 +16619,26 @@ snapshots:
detective-amd: 6.0.1
detective-cjs: 6.0.1
detective-es6: 5.0.1
- detective-postcss: 7.0.1(postcss@8.5.3)
+ detective-postcss: 7.0.1(postcss@8.5.6)
detective-sass: 6.0.1
detective-scss: 5.0.1
detective-stylus: 5.0.1
- detective-typescript: 14.0.0(typescript@5.8.3)
- detective-vue2: 2.2.0(typescript@5.8.3)
+ detective-typescript: 14.0.0(typescript@5.9.3)
+ detective-vue2: 2.2.0(typescript@5.9.3)
module-definition: 6.0.1
node-source-walk: 7.0.1
- postcss: 8.5.3
- typescript: 5.8.3
+ postcss: 8.5.6
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
prelude-ls@1.2.1: {}
- prettier-linter-helpers@1.0.0:
+ prettier-linter-helpers@1.0.1:
dependencies:
fast-diff: 1.3.0
- prettier@3.5.3: {}
-
- pretty-format@29.7.0:
- dependencies:
- '@jest/schemas': 29.6.3
- ansi-styles: 5.2.0
- react-is: 18.2.0
+ prettier@3.8.1: {}
pretty-format@30.2.0:
dependencies:
@@ -17149,10 +16656,10 @@ snapshots:
progress@2.0.3: {}
- proj4@2.9.2:
+ proj4@2.20.2:
dependencies:
mgrs: 1.0.0
- wkt-parser: 1.3.3
+ wkt-parser: 1.5.2
promise-all-reject-late@1.0.1: {}
@@ -17169,7 +16676,7 @@ snapshots:
property-information@6.5.0: {}
- protocols@2.0.1: {}
+ protocols@2.0.2: {}
proxy-from-env@1.1.0: {}
@@ -17181,9 +16688,7 @@ snapshots:
quick-lru@4.0.1: {}
- quickselect@1.1.1: {}
-
- quickselect@2.0.0: {}
+ quickselect@3.0.0: {}
quote-unquote@1.0.0: {}
@@ -17191,15 +16696,9 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- rbush@2.0.2:
- dependencies:
- quickselect: 1.1.1
-
- rbush@3.0.1:
+ rbush@4.0.1:
dependencies:
- quickselect: 2.0.0
-
- react-is@18.2.0: {}
+ quickselect: 3.0.0
react-is@18.3.1: {}
@@ -17280,49 +16779,46 @@ snapshots:
indent-string: 4.0.0
strip-indent: 3.0.0
- reflect.getprototypeof@1.0.7:
+ reflect.getprototypeof@1.0.10:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.5
+ es-abstract: 1.24.1
es-errors: 1.3.0
- get-intrinsic: 1.2.4
- gopd: 1.1.0
- which-builtin-type: 1.2.0
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ which-builtin-type: 1.2.1
- regenerate-unicode-properties@10.2.0:
+ regenerate-unicode-properties@10.2.2:
dependencies:
regenerate: 1.4.2
regenerate@1.4.2: {}
- regenerator-runtime@0.14.1: {}
-
- regenerator-transform@0.15.2:
+ regexp.prototype.flags@1.5.4:
dependencies:
- '@babel/runtime': 7.27.0
-
- regexp.prototype.flags@1.5.3:
- dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
es-errors: 1.3.0
+ get-proto: 1.0.1
+ gopd: 1.2.0
set-function-name: 2.0.2
- regexpu-core@6.2.0:
+ regexpu-core@6.4.0:
dependencies:
regenerate: 1.4.2
- regenerate-unicode-properties: 10.2.0
+ regenerate-unicode-properties: 10.2.2
regjsgen: 0.8.0
- regjsparser: 0.12.0
+ regjsparser: 0.13.0
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.2.0
+ unicode-match-property-value-ecmascript: 2.2.1
regjsgen@0.8.0: {}
- regjsparser@0.12.0:
+ regjsparser@0.13.0:
dependencies:
- jsesc: 3.0.2
+ jsesc: 3.1.0
remark-gfm@3.0.1:
dependencies:
@@ -17383,7 +16879,7 @@ snapshots:
esprima: 4.0.1
stringify-object: 3.3.0
- requirejs@2.3.7: {}
+ requirejs@2.3.8: {}
resolve-cwd@3.0.0:
dependencies:
@@ -17403,21 +16899,18 @@ snapshots:
resolve.exports@2.0.3: {}
- resolve@1.22.10:
+ resolve@1.22.11:
dependencies:
is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- resolve@1.22.8:
+ resolve@2.0.0-next.6:
dependencies:
- is-core-module: 2.13.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
-
- resolve@2.0.0-next.5:
- dependencies:
- is-core-module: 2.13.1
+ es-errors: 1.3.0
+ is-core-module: 2.16.1
+ node-exports-info: 1.6.0
+ object-keys: 1.1.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -17433,45 +16926,53 @@ snapshots:
retry@0.12.0: {}
- reusify@1.0.4: {}
+ retry@0.13.1: {}
+
+ reusify@1.1.0: {}
rfdc@1.4.1: {}
- rimraf@4.4.1:
+ rimraf@6.1.3:
dependencies:
- glob: 9.3.5
+ glob: 13.0.6
+ package-json-from-dist: 1.0.1
- robust-predicates@2.0.4: {}
+ robust-predicates@3.0.2: {}
- rollup-plugin-polyfill-node@0.13.0(rollup@4.40.1):
+ rollup-plugin-polyfill-node@0.13.0(rollup@4.59.0):
dependencies:
- '@rollup/plugin-inject': 5.0.5(rollup@4.40.1)
- rollup: 4.40.1
+ '@rollup/plugin-inject': 5.0.5(rollup@4.59.0)
+ rollup: 4.59.0
- rollup@4.40.1:
+ rollup@4.59.0:
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.40.1
- '@rollup/rollup-android-arm64': 4.40.1
- '@rollup/rollup-darwin-arm64': 4.40.1
- '@rollup/rollup-darwin-x64': 4.40.1
- '@rollup/rollup-freebsd-arm64': 4.40.1
- '@rollup/rollup-freebsd-x64': 4.40.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.40.1
- '@rollup/rollup-linux-arm-musleabihf': 4.40.1
- '@rollup/rollup-linux-arm64-gnu': 4.40.1
- '@rollup/rollup-linux-arm64-musl': 4.40.1
- '@rollup/rollup-linux-loongarch64-gnu': 4.40.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.40.1
- '@rollup/rollup-linux-riscv64-gnu': 4.40.1
- '@rollup/rollup-linux-riscv64-musl': 4.40.1
- '@rollup/rollup-linux-s390x-gnu': 4.40.1
- '@rollup/rollup-linux-x64-gnu': 4.40.1
- '@rollup/rollup-linux-x64-musl': 4.40.1
- '@rollup/rollup-win32-arm64-msvc': 4.40.1
- '@rollup/rollup-win32-ia32-msvc': 4.40.1
- '@rollup/rollup-win32-x64-msvc': 4.40.1
+ '@rollup/rollup-android-arm-eabi': 4.59.0
+ '@rollup/rollup-android-arm64': 4.59.0
+ '@rollup/rollup-darwin-arm64': 4.59.0
+ '@rollup/rollup-darwin-x64': 4.59.0
+ '@rollup/rollup-freebsd-arm64': 4.59.0
+ '@rollup/rollup-freebsd-x64': 4.59.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.59.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.59.0
+ '@rollup/rollup-linux-arm64-gnu': 4.59.0
+ '@rollup/rollup-linux-arm64-musl': 4.59.0
+ '@rollup/rollup-linux-loong64-gnu': 4.59.0
+ '@rollup/rollup-linux-loong64-musl': 4.59.0
+ '@rollup/rollup-linux-ppc64-gnu': 4.59.0
+ '@rollup/rollup-linux-ppc64-musl': 4.59.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.59.0
+ '@rollup/rollup-linux-riscv64-musl': 4.59.0
+ '@rollup/rollup-linux-s390x-gnu': 4.59.0
+ '@rollup/rollup-linux-x64-gnu': 4.59.0
+ '@rollup/rollup-linux-x64-musl': 4.59.0
+ '@rollup/rollup-openbsd-x64': 4.59.0
+ '@rollup/rollup-openharmony-arm64': 4.59.0
+ '@rollup/rollup-win32-arm64-msvc': 4.59.0
+ '@rollup/rollup-win32-ia32-msvc': 4.59.0
+ '@rollup/rollup-win32-x64-gnu': 4.59.0
+ '@rollup/rollup-win32-x64-msvc': 4.59.0
fsevents: 2.3.3
run-async@4.0.6: {}
@@ -17480,8 +16981,6 @@ snapshots:
dependencies:
queue-microtask: 1.2.3
- runtypes@6.7.0: {}
-
rxjs@7.8.2:
dependencies:
tslib: 2.8.1
@@ -17490,10 +16989,11 @@ snapshots:
dependencies:
mri: 1.2.0
- safe-array-concat@1.1.2:
+ safe-array-concat@1.1.3:
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ get-intrinsic: 1.3.0
has-symbols: 1.1.0
isarray: 2.0.5
@@ -17501,31 +17001,32 @@ snapshots:
safe-buffer@5.2.1: {}
- safe-regex-test@1.0.3:
+ safe-push-apply@1.0.0:
dependencies:
- call-bind: 1.0.7
es-errors: 1.3.0
- is-regex: 1.1.4
+ isarray: 2.0.5
- safe-stable-stringify@2.5.0: {}
+ safe-regex-test@1.1.0:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ is-regex: 1.2.1
safer-buffer@2.1.2: {}
sass-lookup@6.1.0:
dependencies:
commander: 12.1.0
- enhanced-resolve: 5.18.1
+ enhanced-resolve: 5.19.0
semver@5.7.2: {}
semver@6.3.1: {}
- semver@7.6.3: {}
-
- semver@7.7.1: {}
-
semver@7.7.2: {}
+ semver@7.7.4: {}
+
serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
@@ -17537,8 +17038,8 @@ snapshots:
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
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
has-property-descriptors: 1.0.2
set-function-name@2.0.2:
@@ -17548,69 +17049,87 @@ snapshots:
functions-have-names: 1.2.3
has-property-descriptors: 1.0.2
+ set-proto@1.0.0:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+
shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
shebang-regex@3.0.0: {}
- side-channel@1.0.6:
+ side-channel-list@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-map@1.0.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
es-errors: 1.3.0
- get-intrinsic: 1.2.4
- object-inspect: 1.13.3
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-weakmap@1.0.2:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-map: 1.0.1
+
+ side-channel@1.1.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-list: 1.0.0
+ side-channel-map: 1.0.1
+ side-channel-weakmap: 1.0.2
signal-exit@3.0.7: {}
signal-exit@4.1.0: {}
- sigstore@4.0.0:
+ sigstore@4.1.0:
dependencies:
'@sigstore/bundle': 4.0.0
- '@sigstore/core': 3.0.0
+ '@sigstore/core': 3.1.0
'@sigstore/protobuf-specs': 0.5.0
- '@sigstore/sign': 4.0.1
- '@sigstore/tuf': 4.0.0
- '@sigstore/verify': 3.0.0
+ '@sigstore/sign': 4.1.0
+ '@sigstore/tuf': 4.0.1
+ '@sigstore/verify': 3.1.0
transitivePeerDependencies:
- supports-color
- simple-swizzle@0.2.2:
- dependencies:
- is-arrayish: 0.3.2
-
- skmeans@0.9.7: {}
+ skmeans@0.11.3: {}
slash@3.0.0: {}
slash@5.1.0: {}
- slice-ansi@5.0.0:
+ slice-ansi@7.1.2:
dependencies:
- ansi-styles: 6.2.1
- is-fullwidth-code-point: 4.0.0
-
- slice-ansi@7.1.0:
- dependencies:
- ansi-styles: 6.2.1
- is-fullwidth-code-point: 5.0.0
+ ansi-styles: 6.2.3
+ is-fullwidth-code-point: 5.1.0
smart-buffer@4.2.0: {}
- smob@1.4.1: {}
+ smob@1.6.1: {}
- socks-proxy-agent@8.0.3:
+ socks-proxy-agent@8.0.5:
dependencies:
- agent-base: 7.1.1
- debug: 4.4.0
- socks: 2.7.1
+ agent-base: 7.1.4
+ debug: 4.4.3
+ socks: 2.8.7
transitivePeerDependencies:
- supports-color
- socks@2.7.1:
+ socks@2.8.7:
dependencies:
- ip: 2.0.1
+ ip-address: 10.1.0
smart-buffer: 4.2.0
sort-keys@2.0.0:
@@ -17621,7 +17140,7 @@ snapshots:
dependencies:
is-plain-obj: 2.1.0
- sort-keys@5.1.0:
+ sort-keys@6.0.0:
dependencies:
is-plain-obj: 4.1.0
@@ -17634,25 +17153,23 @@ snapshots:
source-map@0.6.1: {}
- source-map@0.8.0-beta.0:
- dependencies:
- whatwg-url: 7.1.0
+ source-map@0.7.6: {}
space-separated-tokens@2.0.2: {}
spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.16
+ spdx-license-ids: 3.0.23
- spdx-exceptions@2.3.0: {}
+ spdx-exceptions@2.5.0: {}
spdx-expression-parse@3.0.1:
dependencies:
- spdx-exceptions: 2.3.0
- spdx-license-ids: 3.0.16
+ spdx-exceptions: 2.5.0
+ spdx-license-ids: 3.0.23
- spdx-license-ids@3.0.16: {}
+ spdx-license-ids@3.0.23: {}
splaytree-ts@1.0.2: {}
@@ -17668,17 +17185,16 @@ snapshots:
ssri@12.0.0:
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
- ssri@13.0.0:
+ ssri@13.0.1:
dependencies:
- minipass: 7.1.2
-
- stack-trace@0.0.10: {}
+ minipass: 7.1.3
- stop-iteration-iterator@1.0.0:
+ stop-iteration-iterator@1.1.0:
dependencies:
- internal-slot: 1.0.7
+ es-errors: 1.3.0
+ internal-slot: 1.1.0
string-argv@0.3.2: {}
@@ -17692,32 +17208,41 @@ snapshots:
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
- strip-ansi: 7.1.0
+ strip-ansi: 7.2.0
string-width@7.2.0:
dependencies:
- emoji-regex: 10.4.0
- get-east-asian-width: 1.3.0
- strip-ansi: 7.1.0
+ emoji-regex: 10.6.0
+ get-east-asian-width: 1.5.0
+ strip-ansi: 7.2.0
- string.prototype.trim@1.2.9:
+ string-width@8.2.0:
dependencies:
- call-bind: 1.0.7
+ get-east-asian-width: 1.5.0
+ strip-ansi: 7.2.0
+
+ string.prototype.trim@1.2.10:
+ dependencies:
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.23.5
- es-object-atoms: 1.0.0
+ es-abstract: 1.24.1
+ es-object-atoms: 1.1.1
+ has-property-descriptors: 1.0.2
- string.prototype.trimend@1.0.8:
+ string.prototype.trimend@1.0.9:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.4
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
string.prototype.trimstart@1.0.8:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
string_decoder@1.1.1:
dependencies:
@@ -17742,9 +17267,9 @@ snapshots:
dependencies:
ansi-regex: 5.0.1
- strip-ansi@7.1.0:
+ strip-ansi@7.2.0:
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.2.2
strip-bom@3.0.0: {}
@@ -17754,38 +17279,32 @@ snapshots:
strip-final-newline@2.0.0: {}
- strip-final-newline@3.0.0: {}
-
strip-indent@3.0.0:
dependencies:
min-indent: 1.0.1
strip-json-comments@3.1.1: {}
- strip-json-comments@5.0.1: {}
+ strip-json-comments@5.0.3: {}
stylus-lookup@6.1.0:
dependencies:
commander: 12.1.0
- sucrase@3.35.0:
+ sucrase@3.35.1:
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/gen-mapping': 0.3.13
commander: 4.1.1
- glob: 10.5.0
lines-and-columns: 1.2.4
mz: 2.7.0
- pirates: 4.0.6
+ pirates: 4.0.7
+ tinyglobby: 0.2.15
ts-interface-checker: 0.1.13
supports-color@7.2.0:
dependencies:
has-flag: 4.0.0
- supports-color@8.1.1:
- dependencies:
- has-flag: 4.0.0
-
supports-color@9.4.0: {}
supports-preserve-symlinks-flag@1.0.0: {}
@@ -17794,75 +17313,64 @@ snapshots:
dependencies:
tinyqueue: 2.0.3
- synckit@0.11.11:
+ synckit@0.11.12:
dependencies:
'@pkgr/core': 0.2.9
- tapable@2.2.1: {}
+ tapable@2.3.0: {}
tape@5.9.0:
dependencies:
'@ljharb/resumer': 0.1.3
- '@ljharb/through': 2.3.13
- array.prototype.every: 1.1.6
- call-bind: 1.0.7
+ '@ljharb/through': 2.3.14
+ array.prototype.every: 1.1.7
+ call-bind: 1.0.8
deep-equal: 2.2.3
defined: 1.0.1
dotignore: 0.1.2
- for-each: 0.3.3
+ for-each: 0.3.5
get-package-type: 0.1.0
glob: 7.2.3
- has-dynamic-import: 2.1.0
+ has-dynamic-import: 2.1.1
hasown: 2.0.2
inherits: 2.0.4
- is-regex: 1.1.4
+ is-regex: 1.2.1
minimist: 1.2.8
mock-property: 1.1.0
- object-inspect: 1.13.3
+ object-inspect: 1.13.4
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.9
+ object.assign: 4.1.7
+ resolve: 2.0.0-next.6
+ string.prototype.trim: 1.2.10
tar-stream@2.2.0:
dependencies:
bl: 4.1.0
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
fs-constants: 1.0.0
inherits: 2.0.4
readable-stream: 3.6.2
- tar@6.2.1:
- dependencies:
- chownr: 2.0.0
- fs-minipass: 2.1.0
- minipass: 5.0.0
- minizlib: 2.1.2
- mkdirp: 1.0.4
- yallist: 4.0.0
-
- tar@7.5.2:
+ tar@7.5.7:
dependencies:
'@isaacs/fs-minipass': 4.0.1
chownr: 3.0.0
- minipass: 7.1.2
+ minipass: 7.1.3
minizlib: 3.1.0
yallist: 5.0.0
temp-dir@1.0.0: {}
- terser@5.26.0:
+ terser@5.46.0:
dependencies:
- '@jridgewell/source-map': 0.3.5
- acorn: 8.15.0
+ '@jridgewell/source-map': 0.3.11
+ acorn: 8.16.0
commander: 2.20.3
source-map-support: 0.5.21
text-extensions@1.9.0: {}
- text-hex@1.0.0: {}
-
thenify-all@1.6.0:
dependencies:
thenify: 3.3.1
@@ -17882,16 +17390,18 @@ snapshots:
tinyglobby@0.2.12:
dependencies:
- fdir: 6.4.4(picomatch@4.0.2)
- picomatch: 4.0.2
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
- tinyglobby@0.2.13:
+ tinyglobby@0.2.15:
dependencies:
- fdir: 6.4.4(picomatch@4.0.2)
- picomatch: 4.0.2
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
tinyqueue@2.0.3: {}
+ tinyqueue@3.0.0: {}
+
tmp@0.2.5: {}
to-regex-range@5.0.1:
@@ -17906,10 +17416,6 @@ snapshots:
dependencies:
commander: 2.20.3
- tr46@1.0.1:
- dependencies:
- punycode: 2.3.1
-
tree-kill@1.2.2: {}
treeverse@3.0.0: {}
@@ -17918,13 +17424,11 @@ snapshots:
trim-newlines@3.0.1: {}
- triple-beam@1.4.1: {}
-
trough@2.2.0: {}
- ts-api-utils@2.1.0(typescript@5.8.3):
+ ts-api-utils@2.4.0(typescript@5.9.3):
dependencies:
- typescript: 5.8.3
+ typescript: 5.9.3
ts-interface-checker@0.1.13: {}
@@ -17936,47 +17440,48 @@ snapshots:
tslib@2.8.1: {}
- tstyche@6.2.0(typescript@5.8.3):
+ tstyche@6.2.0(typescript@5.9.3):
optionalDependencies:
- typescript: 5.8.3
+ typescript: 5.9.3
- tsup@8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1):
+ tsup@8.5.1(postcss@8.5.6)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2):
dependencies:
- bundle-require: 5.1.0(esbuild@0.25.3)
+ bundle-require: 5.1.0(esbuild@0.27.3)
cac: 6.7.14
chokidar: 4.0.3
consola: 3.4.2
- debug: 4.4.0
- esbuild: 0.25.3
+ debug: 4.4.3
+ esbuild: 0.27.3
+ fix-dts-default-cjs-exports: 1.0.1
joycon: 3.1.1
picocolors: 1.1.1
- postcss-load-config: 6.0.1(postcss@8.5.3)(tsx@4.19.4)(yaml@2.7.1)
+ postcss-load-config: 6.0.1(postcss@8.5.6)(tsx@4.21.0)(yaml@2.8.2)
resolve-from: 5.0.0
- rollup: 4.40.1
- source-map: 0.8.0-beta.0
- sucrase: 3.35.0
+ rollup: 4.59.0
+ source-map: 0.7.6
+ sucrase: 3.35.1
tinyexec: 0.3.2
- tinyglobby: 0.2.13
+ tinyglobby: 0.2.15
tree-kill: 1.2.2
optionalDependencies:
- postcss: 8.5.3
- typescript: 5.8.3
+ postcss: 8.5.6
+ typescript: 5.9.3
transitivePeerDependencies:
- jiti
- supports-color
- tsx
- yaml
- tsx@4.19.4:
+ tsx@4.21.0:
dependencies:
- esbuild: 0.25.3
- get-tsconfig: 4.8.1
+ esbuild: 0.27.3
+ get-tsconfig: 4.13.6
optionalDependencies:
fsevents: 2.3.3
- tuf-js@4.0.0:
+ tuf-js@4.1.0:
dependencies:
- '@tufjs/models': 4.0.0
+ '@tufjs/models': 4.1.0
debug: 4.4.3
make-fetch-happen: 15.0.2
transitivePeerDependencies:
@@ -17996,38 +17501,38 @@ snapshots:
type-fest@2.19.0: {}
- typed-array-buffer@1.0.2:
+ typed-array-buffer@1.0.3:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.4
es-errors: 1.3.0
- is-typed-array: 1.1.13
+ is-typed-array: 1.1.15
- typed-array-byte-length@1.0.1:
+ typed-array-byte-length@1.0.3:
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
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
- typed-array-byte-offset@1.0.3:
+ typed-array-byte-offset@1.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
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
+ reflect.getprototypeof: 1.0.10
typed-array-length@1.0.7:
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
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ is-typed-array: 1.1.15
+ possible-typed-array-names: 1.1.0
+ reflect.getprototypeof: 1.0.10
typedarray-to-buffer@3.1.5:
dependencies:
@@ -18035,49 +17540,53 @@ snapshots:
typedarray@0.0.6: {}
- typescript-eslint@8.38.0(eslint@9.31.0)(typescript@5.8.3):
+ typescript-eslint@8.56.1(eslint@10.0.2)(typescript@5.9.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.31.0)(typescript@5.8.3))(eslint@9.31.0)(typescript@5.8.3)
- '@typescript-eslint/parser': 8.38.0(eslint@9.31.0)(typescript@5.8.3)
- '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3)
- '@typescript-eslint/utils': 8.38.0(eslint@9.31.0)(typescript@5.8.3)
- eslint: 9.31.0
- typescript: 5.8.3
+ '@typescript-eslint/eslint-plugin': 8.56.1(@typescript-eslint/parser@8.56.1(eslint@10.0.2)(typescript@5.9.3))(eslint@10.0.2)(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.56.1(eslint@10.0.2)(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.56.1(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.56.1(eslint@10.0.2)(typescript@5.9.3)
+ eslint: 10.0.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- typescript@5.8.3: {}
+ typescript@5.9.3: {}
+
+ ufo@1.6.3: {}
uglify-js@3.19.3:
optional: true
- unbox-primitive@1.0.2:
+ unbox-primitive@1.1.0:
dependencies:
- call-bind: 1.0.7
- has-bigints: 1.0.2
+ call-bound: 1.0.4
+ has-bigints: 1.1.0
has-symbols: 1.1.0
- which-boxed-primitive: 1.1.0
+ which-boxed-primitive: 1.1.1
unc-path-regex@0.1.2: {}
- undici-types@6.21.0: {}
+ undici-types@7.18.2: {}
unicode-canonical-property-names-ecmascript@2.0.1: {}
unicode-match-property-ecmascript@2.0.0:
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.1
- unicode-property-aliases-ecmascript: 2.1.0
+ unicode-property-aliases-ecmascript: 2.2.0
- unicode-match-property-value-ecmascript@2.2.0: {}
+ unicode-match-property-value-ecmascript@2.2.1: {}
- unicode-property-aliases-ecmascript@2.1.0: {}
+ unicode-property-aliases-ecmascript@2.2.0: {}
unicorn-magic@0.1.0: {}
+ unicorn-magic@0.3.0: {}
+
unified@10.1.2:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
bail: 2.0.2
extend: 3.0.2
is-buffer: 2.0.5
@@ -18085,48 +17594,40 @@ snapshots:
trough: 2.2.0
vfile: 5.3.7
- unique-filename@4.0.0:
- dependencies:
- unique-slug: 5.0.0
-
unique-filename@5.0.0:
dependencies:
unique-slug: 6.0.0
- unique-slug@5.0.0:
- dependencies:
- imurmurhash: 0.1.4
-
unique-slug@6.0.0:
dependencies:
imurmurhash: 0.1.4
unist-builder@3.0.1:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-generated@2.0.1: {}
unist-util-is@5.2.1:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-position@4.0.4:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-stringify-position@3.0.3:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-visit-parents@5.1.3:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 5.2.1
unist-util-visit@4.1.2:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
@@ -18136,9 +17637,9 @@ snapshots:
upath@2.0.1: {}
- update-browserslist-db@1.1.3(browserslist@4.24.4):
+ update-browserslist-db@1.2.3(browserslist@4.28.1):
dependencies:
- browserslist: 4.24.4
+ browserslist: 4.28.1
escalade: 3.2.0
picocolors: 1.1.1
@@ -18153,7 +17654,7 @@ snapshots:
uvu@0.5.6:
dependencies:
dequal: 2.0.3
- diff: 5.2.0
+ diff: 5.2.2
kleur: 4.1.5
sade: 1.8.1
@@ -18166,12 +17667,12 @@ snapshots:
vfile-location@4.1.0:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
vfile: 5.3.7
vfile-message@3.1.4:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
unist-util-stringify-position: 3.0.3
vfile-reporter@7.0.5:
@@ -18197,7 +17698,7 @@ snapshots:
vfile@5.3.7:
dependencies:
- '@types/unist': 2.0.10
+ '@types/unist': 2.0.11
is-buffer: 2.0.5
unist-util-stringify-position: 3.0.3
vfile-message: 3.1.4
@@ -18216,51 +17717,45 @@ snapshots:
web-namespaces@2.0.1: {}
- webidl-conversions@4.0.2: {}
-
- whatwg-url@7.1.0:
- dependencies:
- lodash.sortby: 4.7.0
- tr46: 1.0.1
- webidl-conversions: 4.0.2
-
- which-boxed-primitive@1.1.0:
+ which-boxed-primitive@1.1.1:
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
+ is-boolean-object: 1.2.2
+ is-number-object: 1.1.1
+ is-string: 1.1.1
+ is-symbol: 1.1.1
- which-builtin-type@1.2.0:
+ which-builtin-type@1.2.1:
dependencies:
- call-bind: 1.0.7
- function.prototype.name: 1.1.6
+ call-bound: 1.0.4
+ function.prototype.name: 1.1.8
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
+ is-async-function: 2.1.1
+ is-date-object: 1.1.0
+ is-finalizationregistry: 1.1.1
+ is-generator-function: 1.1.2
+ is-regex: 1.2.1
+ is-weakref: 1.1.1
isarray: 2.0.5
- which-boxed-primitive: 1.1.0
+ which-boxed-primitive: 1.1.1
which-collection: 1.0.2
- which-typed-array: 1.1.16
+ which-typed-array: 1.1.20
which-collection@1.0.2:
dependencies:
is-map: 2.0.3
is-set: 2.0.3
is-weakmap: 2.0.2
- is-weakset: 2.0.3
+ is-weakset: 2.0.4
- which-typed-array@1.1.16:
+ which-typed-array@1.1.20:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- for-each: 0.3.3
- gopd: 1.1.0
+ call-bind: 1.0.8
+ call-bound: 1.0.4
+ for-each: 0.3.5
+ get-proto: 1.0.1
+ gopd: 1.2.0
has-tostringtag: 1.0.2
which@2.0.2:
@@ -18269,37 +17764,17 @@ snapshots:
which@5.0.0:
dependencies:
- isexe: 3.1.1
+ isexe: 3.1.5
- which@6.0.0:
+ which@6.0.1:
dependencies:
- isexe: 3.1.1
+ isexe: 4.0.0
wide-align@1.1.5:
dependencies:
string-width: 4.2.3
- winston-transport@4.9.0:
- dependencies:
- logform: 2.7.0
- readable-stream: 3.6.2
- triple-beam: 1.4.1
-
- winston@3.17.0:
- dependencies:
- '@colors/colors': 1.6.0
- '@dabh/diagnostics': 2.0.3
- async: 3.2.6
- is-stream: 2.0.1
- logform: 2.7.0
- one-time: 1.0.0
- readable-stream: 3.6.2
- safe-stable-stringify: 2.5.0
- stack-trace: 0.0.10
- triple-beam: 1.4.1
- winston-transport: 4.9.0
-
- wkt-parser@1.3.3: {}
+ wkt-parser@1.5.2: {}
word-wrap@1.2.5: {}
@@ -18317,17 +17792,11 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
- wrap-ansi@8.1.0:
+ wrap-ansi@9.0.2:
dependencies:
- ansi-styles: 6.2.1
- string-width: 5.1.2
- strip-ansi: 7.1.0
-
- wrap-ansi@9.0.0:
- dependencies:
- ansi-styles: 6.2.1
+ ansi-styles: 6.2.3
string-width: 7.2.0
- strip-ansi: 7.1.0
+ strip-ansi: 7.2.0
wrappy@1.0.2: {}
@@ -18363,12 +17832,12 @@ snapshots:
sort-keys: 2.0.0
write-file-atomic: 2.4.3
- write-json-file@6.0.0:
+ write-json-file@7.0.0:
dependencies:
- detect-indent: 7.0.1
+ detect-indent: 7.0.2
is-plain-obj: 4.1.0
- sort-keys: 5.1.0
- write-file-atomic: 5.0.1
+ sort-keys: 6.0.0
+ write-file-atomic: 6.0.0
write-pkg@4.0.0:
dependencies:
@@ -18391,14 +17860,14 @@ snapshots:
yallist@5.0.0: {}
- yaml@2.7.1: {}
+ yaml@2.8.2: {}
yamljs@0.3.0:
dependencies:
argparse: 1.0.10
glob: 7.2.3
- yargs-parser@20.2.4: {}
+ yargs-parser@20.2.9: {}
yargs-parser@21.1.1: {}
@@ -18410,7 +17879,7 @@ snapshots:
require-directory: 2.1.1
string-width: 4.2.3
y18n: 5.0.8
- yargs-parser: 20.2.4
+ yargs-parser: 20.2.9
yargs@17.7.2:
dependencies:
@@ -18424,8 +17893,10 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.0.0: {}
+ yocto-queue@1.2.2: {}
yoctocolors-cjs@2.1.3: {}
+ zod@4.3.6: {}
+
zwitch@2.0.4: {}