diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df3e16da7..ae4d24cb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,11 +4,11 @@ on: push: branches: - master - - support/6.x + - support/7.x pull_request: branches: - master - - support/6.x + - support/7.x permissions: contents: read @@ -21,6 +21,8 @@ jobs: fail-fast: false matrix: node-version: [18.x, 20.x, 22.x, 24.x, 26.x] + exclude: + - node-version: ${{ (github.base_ref || github.ref_name) == 'master' && '18.x' || 'none' }} steps: - name: Checkout diff --git a/.monorepolint.config.mjs b/.monorepolint.config.mjs index 5ce247918..3cdd8ff3a 100644 --- a/.monorepolint.config.mjs +++ b/.monorepolint.config.mjs @@ -64,9 +64,6 @@ export default { "publishConfig", "keywords", "type", - "main", - "module", - "types", "exports", "browser", "sideEffects", @@ -87,9 +84,9 @@ export default { options: { entries: { type: "module", - main: "dist/cjs/index.cjs", - module: "dist/esm/index.js", - types: "dist/esm/index.d.ts", + main: REMOVE, + module: REMOVE, + types: REMOVE, sideEffects: false, publishConfig: { access: "public", @@ -103,14 +100,10 @@ export default { exports: { "./package.json": "./package.json", ".": { - import: { - types: "./dist/esm/index.d.ts", - default: "./dist/esm/index.js", - }, - require: { - types: "./dist/cjs/index.d.cts", - default: "./dist/cjs/index.cjs", - }, + types: "./dist/index.d.ts", + default: "./dist/index.js", + require: REMOVE, + import: REMOVE, }, }, }, @@ -122,9 +115,9 @@ export default { options: { entries: { type: "module", - main: "dist/cjs/index.cjs", - module: "dist/esm/index.js", - types: "dist/esm/index.d.ts", + main: REMOVE, + module: REMOVE, + types: REMOVE, sideEffects: false, publishConfig: { access: "public", @@ -132,14 +125,10 @@ export default { exports: { "./package.json": "./package.json", ".": { - import: { - types: "./dist/esm/index.d.ts", - default: "./dist/esm/index.js", - }, - require: { - types: "./dist/cjs/index.d.cts", - default: "./dist/cjs/index.cjs", - }, + types: "./dist/index.d.ts", + default: "./dist/index.js", + require: REMOVE, + import: REMOVE, }, }, }, @@ -177,7 +166,7 @@ export default { packageScript({ options: { scripts: { - build: "tsup --config ../../tsup.config.ts", + build: "tsc", }, }, includePackages: PACKAGES, @@ -186,8 +175,7 @@ export default { packageScript({ options: { scripts: { - build: - "tsup --config ../../tsup.config.ts && rollup -c rollup.config.js", + build: "tsc && rollup -c rollup.config.js", }, }, includePackages: [MAIN_PACKAGE], @@ -228,7 +216,6 @@ export default { benchmark: "catalog:", glob: REMOVE, tape: "catalog:", - tsup: "catalog:", tsx: "catalog:", }, }, @@ -238,7 +225,7 @@ export default { requireDependency({ options: { dependencies: { - tslib: "catalog:", + tslib: REMOVE, }, devDependencies: { "@types/benchmark": "catalog:", diff --git a/eslint.config.mjs b/eslint.config.mjs index f04c31994..315fae149 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -48,6 +48,22 @@ export default tsEslint.config( "prefer-const": "off", }, }, + + // ban top-level await in our source files + // Node's commonjs require() of ESM syntax requires that they be synchronous + { + files: ["packages/*/index.ts", "packages/*/lib/**/*.ts"], + rules: { + "no-restricted-syntax": [ + "error", + { + selector: + "AwaitExpression[argument.type!='AwaitExpression'][parent.type!='FunctionExpression'][parent.type!='FunctionDeclaration'][parent.type!='ArrowFunctionExpression']", + message: "Top-level await is not allowed.", + }, + ], + }, + }, { files: ["packages/*/types.ts", "packages/*/test.ts"], diff --git a/nx.json b/nx.json index e6ced2dd5..d7beb76e9 100644 --- a/nx.json +++ b/nx.json @@ -14,8 +14,7 @@ "inputs": [ "default", "sources", - "{workspaceRoot}/tsup.config.ts", - "{projectRoot}/index.d.ts", + "{workspaceRoot}/tsconfig.shared.json", "{projectRoot}/rollup.config.cjs" ], "outputs": ["{projectRoot}/dist"], diff --git a/package.json b/package.json index a339ee93c..2b68fa077 100644 --- a/package.json +++ b/package.json @@ -5,9 +5,6 @@ "docs": "node ./scripts/generate-readmes.mts", "lint": "pnpm run /lint:.*/", "lint:docs": "documentation lint packages/turf-*/index.js", - "lint:escheck-cjs": "es-check es8 packages/*/dist/cjs/index.cjs packages/turf/turf.min.js", - "lint:escheck-esm": "es-check --module es8 packages/*/dist/esm/index.js", - "lint:escheck-web": "es-check es5 packages/turf/turf.min.js", "lint:eslint": "eslint packages", "lint:mrl": "mrl check", "lint:prettier": "prettier --check .", @@ -43,7 +40,6 @@ "decamelize": "^6.0.0", "dependency-tree": "^11.1.1", "documentation": "^14.0.3", - "es-check": "^9.0.0", "eslint": "^9.31.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.3", @@ -57,7 +53,6 @@ "meow": "^13.2.0", "prettier": "^3.5.3", "progress": "^2.0.3", - "tsup": "^8.4.0", "typescript": "^5.8.3", "typescript-eslint": "^8.38.0", "yaml": "^2.8.2" diff --git a/packages/turf-along/package.json b/packages/turf-along/package.json index 2fb5e72d8..abfe95f14 100644 --- a/packages/turf-along/package.json +++ b/packages/turf-along/package.json @@ -24,20 +24,11 @@ "distance" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -56,7 +47,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -66,7 +56,6 @@ "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-angle/package.json b/packages/turf-angle/package.json index e45c5d1d8..5fb08fbd6 100644 --- a/packages/turf-angle/package.json +++ b/packages/turf-angle/package.json @@ -24,20 +24,11 @@ "angle" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -59,7 +50,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -69,7 +59,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/rhumb-bearing": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-area/package.json b/packages/turf-area/package.json index bd2e819b2..bd56028a8 100644 --- a/packages/turf-area/package.json +++ b/packages/turf-area/package.json @@ -23,20 +23,11 @@ "multipolygon" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -45,7 +36,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -55,7 +46,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -63,7 +53,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-bbox-clip/package.json b/packages/turf-bbox-clip/package.json index 1d0a22903..e720b32b9 100644 --- a/packages/turf-bbox-clip/package.json +++ b/packages/turf-bbox-clip/package.json @@ -29,20 +29,11 @@ "clip" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -51,7 +42,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -62,7 +53,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -70,7 +60,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-bbox-polygon/package.json b/packages/turf-bbox-polygon/package.json index 1f4e0408f..ba180f87a 100644 --- a/packages/turf-bbox-polygon/package.json +++ b/packages/turf-bbox-polygon/package.json @@ -24,20 +24,11 @@ "bbox" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -55,13 +46,11 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-bbox/package.json b/packages/turf-bbox/package.json index e22eb7347..b720c1f22 100644 --- a/packages/turf-bbox/package.json +++ b/packages/turf-bbox/package.json @@ -25,20 +25,11 @@ "geojson" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -47,7 +38,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -56,14 +47,12 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-bearing/package.json b/packages/turf-bearing/package.json index 70ac298f1..5ddccb66b 100644 --- a/packages/turf-bearing/package.json +++ b/packages/turf-bearing/package.json @@ -21,20 +21,11 @@ "bearing" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -43,7 +34,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -53,7 +44,6 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -61,7 +51,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-bezier-spline/package.json b/packages/turf-bezier-spline/package.json index c660fd33f..0f2be9899 100644 --- a/packages/turf-bezier-spline/package.json +++ b/packages/turf-bezier-spline/package.json @@ -24,20 +24,11 @@ "linestring" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -56,7 +47,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -64,7 +54,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-boolean-clockwise/package.json b/packages/turf-boolean-clockwise/package.json index baccdd19b..efe3900cd 100644 --- a/packages/turf-boolean-clockwise/package.json +++ b/packages/turf-boolean-clockwise/package.json @@ -28,20 +28,11 @@ "boolean" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -50,7 +41,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -60,14 +51,12 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-boolean-concave/package.json b/packages/turf-boolean-concave/package.json index 0ed294215..1eed5d080 100644 --- a/packages/turf-boolean-concave/package.json +++ b/packages/turf-boolean-concave/package.json @@ -27,20 +27,11 @@ "boolean" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -59,14 +50,12 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-boolean-contains/package.json b/packages/turf-boolean-contains/package.json index 23f6bf682..7ada942e9 100644 --- a/packages/turf-boolean-contains/package.json +++ b/packages/turf-boolean-contains/package.json @@ -28,20 +28,11 @@ "de-9im" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -50,7 +41,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -62,7 +53,6 @@ "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -73,7 +63,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/line-split": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-boolean-crosses/package.json b/packages/turf-boolean-crosses/package.json index 8addf0f49..845f639f1 100644 --- a/packages/turf-boolean-crosses/package.json +++ b/packages/turf-boolean-crosses/package.json @@ -28,20 +28,11 @@ "de-9im" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -50,7 +41,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -61,7 +52,6 @@ "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -72,7 +62,6 @@ "@turf/invariant": "workspace:*", "@turf/line-intersect": "workspace:*", "@turf/polygon-to-line": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-boolean-disjoint/package.json b/packages/turf-boolean-disjoint/package.json index 067b17eff..f4b37d00f 100644 --- a/packages/turf-boolean-disjoint/package.json +++ b/packages/turf-boolean-disjoint/package.json @@ -27,20 +27,11 @@ "de-9im" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -60,7 +51,6 @@ "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -70,7 +60,6 @@ "@turf/line-intersect": "workspace:*", "@turf/meta": "workspace:*", "@turf/polygon-to-line": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-boolean-equal/package.json b/packages/turf-boolean-equal/package.json index b4a20249d..efbbc4572 100644 --- a/packages/turf-boolean-equal/package.json +++ b/packages/turf-boolean-equal/package.json @@ -30,20 +30,11 @@ "boolean-equal" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -52,7 +43,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -63,7 +54,6 @@ "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -72,7 +62,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "catalog:", - "geojson-equality-ts": "^1.0.2", - "tslib": "catalog:" + "geojson-equality-ts": "^1.0.2" } } diff --git a/packages/turf-boolean-intersects/package.json b/packages/turf-boolean-intersects/package.json index 01bd7e119..7bb37424e 100644 --- a/packages/turf-boolean-intersects/package.json +++ b/packages/turf-boolean-intersects/package.json @@ -28,20 +28,11 @@ "de-9im" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -50,7 +41,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -61,7 +52,6 @@ "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -69,7 +59,6 @@ "@turf/boolean-disjoint": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-boolean-overlap/package.json b/packages/turf-boolean-overlap/package.json index 8b768438d..f3d8d3da2 100644 --- a/packages/turf-boolean-overlap/package.json +++ b/packages/turf-boolean-overlap/package.json @@ -29,20 +29,11 @@ "boolean-overlap" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -51,7 +42,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -62,7 +53,6 @@ "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -73,7 +63,6 @@ "@turf/line-overlap": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "catalog:", - "geojson-equality-ts": "^1.0.2", - "tslib": "catalog:" + "geojson-equality-ts": "^1.0.2" } } diff --git a/packages/turf-boolean-parallel/package.json b/packages/turf-boolean-parallel/package.json index 14042fe65..2dd7c44e1 100644 --- a/packages/turf-boolean-parallel/package.json +++ b/packages/turf-boolean-parallel/package.json @@ -26,20 +26,11 @@ "boolean-parallel" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -48,7 +39,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -58,7 +49,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -68,7 +58,6 @@ "@turf/helpers": "workspace:*", "@turf/line-segment": "workspace:*", "@turf/rhumb-bearing": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-boolean-point-in-polygon/package.json b/packages/turf-boolean-point-in-polygon/package.json index 2e470ae58..807aace94 100644 --- a/packages/turf-boolean-point-in-polygon/package.json +++ b/packages/turf-boolean-point-in-polygon/package.json @@ -25,20 +25,11 @@ "gis" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -47,7 +38,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -56,7 +47,6 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -64,7 +54,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "catalog:", - "point-in-polygon-hao": "^1.1.0", - "tslib": "catalog:" + "point-in-polygon-hao": "^1.1.0" } } diff --git a/packages/turf-boolean-point-on-line/package.json b/packages/turf-boolean-point-on-line/package.json index aef09aed2..ef6dddd42 100644 --- a/packages/turf-boolean-point-on-line/package.json +++ b/packages/turf-boolean-point-on-line/package.json @@ -24,20 +24,11 @@ "booleanPointOnLine" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -56,7 +47,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -64,7 +54,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-boolean-touches/package.json b/packages/turf-boolean-touches/package.json index 2c99d885d..5ff24e284 100644 --- a/packages/turf-boolean-touches/package.json +++ b/packages/turf-boolean-touches/package.json @@ -28,20 +28,11 @@ "boolean-touches" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -50,7 +41,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -63,7 +54,6 @@ "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -72,7 +62,6 @@ "@turf/boolean-point-on-line": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-boolean-valid/package.json b/packages/turf-boolean-valid/package.json index 4c4eea127..b4ca5d8d7 100644 --- a/packages/turf-boolean-valid/package.json +++ b/packages/turf-boolean-valid/package.json @@ -27,20 +27,11 @@ "ogc" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -61,7 +52,6 @@ "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -76,7 +66,6 @@ "@turf/invariant": "workspace:*", "@turf/line-intersect": "workspace:*", "@types/geojson": "catalog:", - "geojson-polygon-self-intersections": "^1.2.1", - "tslib": "catalog:" + "geojson-polygon-self-intersections": "^1.2.1" } } diff --git a/packages/turf-boolean-within/package.json b/packages/turf-boolean-within/package.json index 92ae68c3a..2c9e05e4b 100644 --- a/packages/turf-boolean-within/package.json +++ b/packages/turf-boolean-within/package.json @@ -29,20 +29,11 @@ "boolean-within" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -51,7 +42,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -64,7 +55,6 @@ "boolean-shapely": "*", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -75,7 +65,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/line-split": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-buffer/package.json b/packages/turf-buffer/package.json index 56cb472ea..afd271ec0 100644 --- a/packages/turf-buffer/package.json +++ b/packages/turf-buffer/package.json @@ -31,20 +31,11 @@ "turf" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -53,7 +44,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tstyche" @@ -67,7 +58,6 @@ "load-json-file": "^7.0.1", "tape": "catalog:", "tstyche": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -80,7 +70,6 @@ "@turf/meta": "workspace:*", "@turf/projection": "workspace:*", "@types/geojson": "catalog:", - "d3-geo": "^2.0.2", - "tslib": "catalog:" + "d3-geo": "^2.0.2" } } diff --git a/packages/turf-center-mean/package.json b/packages/turf-center-mean/package.json index a67c70621..a6e97338d 100644 --- a/packages/turf-center-mean/package.json +++ b/packages/turf-center-mean/package.json @@ -29,20 +29,11 @@ "turf" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -51,7 +42,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -64,7 +55,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -73,7 +63,6 @@ "@turf/bbox": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-center-median/package.json b/packages/turf-center-median/package.json index 0ba96aaa0..7ccf43fa6 100644 --- a/packages/turf-center-median/package.json +++ b/packages/turf-center-median/package.json @@ -24,20 +24,11 @@ "center-median" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -60,7 +51,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -71,7 +61,6 @@ "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-center-of-mass/package.json b/packages/turf-center-of-mass/package.json index c8174a46b..94070d459 100644 --- a/packages/turf-center-of-mass/package.json +++ b/packages/turf-center-of-mass/package.json @@ -21,20 +21,11 @@ "gis" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -43,7 +34,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -54,7 +45,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -65,7 +55,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-center/package.json b/packages/turf-center/package.json index 26ed436da..2cc843015 100644 --- a/packages/turf-center/package.json +++ b/packages/turf-center/package.json @@ -25,20 +25,11 @@ "turf" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -47,7 +38,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -60,7 +51,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -68,7 +58,6 @@ "dependencies": { "@turf/bbox": "workspace:*", "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-centroid/package.json b/packages/turf-centroid/package.json index 1503d30f8..edc767f81 100644 --- a/packages/turf-centroid/package.json +++ b/packages/turf-centroid/package.json @@ -23,20 +23,11 @@ "gis" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -45,7 +36,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -56,7 +47,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -64,7 +54,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-circle/package.json b/packages/turf-circle/package.json index a1733e87d..487dbfd00 100644 --- a/packages/turf-circle/package.json +++ b/packages/turf-circle/package.json @@ -25,20 +25,11 @@ "km" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -47,7 +38,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -60,7 +51,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -68,7 +58,6 @@ "dependencies": { "@turf/destination": "workspace:*", "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-clean-coords/package.json b/packages/turf-clean-coords/package.json index b5551ae38..8c42dba86 100644 --- a/packages/turf-clean-coords/package.json +++ b/packages/turf-clean-coords/package.json @@ -26,20 +26,11 @@ "clean-coords" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -48,7 +39,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -61,7 +52,6 @@ "geojson-equality-ts": "^1.0.2", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -70,7 +60,6 @@ "@turf/boolean-point-on-line": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-clone/package.json b/packages/turf-clone/package.json index 07c87caab..793aa6b55 100644 --- a/packages/turf-clone/package.json +++ b/packages/turf-clone/package.json @@ -24,20 +24,11 @@ "clone" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -57,13 +48,11 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-clusters-dbscan/package.json b/packages/turf-clusters-dbscan/package.json index 8549e979b..d24ab5b25 100644 --- a/packages/turf-clusters-dbscan/package.json +++ b/packages/turf-clusters-dbscan/package.json @@ -31,20 +31,11 @@ "dbscan" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -53,7 +44,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -69,7 +60,6 @@ "concaveman": "^1.2.1", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -80,7 +70,6 @@ "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "catalog:", - "rbush": "^3.0.1", - "tslib": "catalog:" + "rbush": "^3.0.1" } } diff --git a/packages/turf-clusters-kmeans/package.json b/packages/turf-clusters-kmeans/package.json index e79ece659..f8ba3a9cc 100644 --- a/packages/turf-clusters-kmeans/package.json +++ b/packages/turf-clusters-kmeans/package.json @@ -30,20 +30,11 @@ "k-means" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -52,7 +43,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -69,7 +60,6 @@ "concaveman": "^1.2.1", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -80,7 +70,6 @@ "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "catalog:", - "skmeans": "0.9.7", - "tslib": "catalog:" + "skmeans": "0.9.7" } } diff --git a/packages/turf-clusters/package.json b/packages/turf-clusters/package.json index d599907fa..44f616ebf 100644 --- a/packages/turf-clusters/package.json +++ b/packages/turf-clusters/package.json @@ -27,20 +27,11 @@ "clustering" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -59,14 +50,12 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-collect/package.json b/packages/turf-collect/package.json index 753390eeb..53807d353 100644 --- a/packages/turf-collect/package.json +++ b/packages/turf-collect/package.json @@ -28,20 +28,11 @@ "stats" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -50,7 +41,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -60,7 +51,6 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -69,7 +59,6 @@ "@turf/boolean-point-in-polygon": "workspace:*", "@turf/helpers": "workspace:*", "@types/geojson": "catalog:", - "rbush": "^3.0.1", - "tslib": "catalog:" + "rbush": "^3.0.1" } } diff --git a/packages/turf-combine/package.json b/packages/turf-combine/package.json index 7b7504ca6..901c7e1a1 100644 --- a/packages/turf-combine/package.json +++ b/packages/turf-combine/package.json @@ -24,20 +24,11 @@ "combine" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -55,14 +46,12 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-concave/package.json b/packages/turf-concave/package.json index 4083a246e..864a5745d 100644 --- a/packages/turf-concave/package.json +++ b/packages/turf-concave/package.json @@ -34,20 +34,11 @@ "geometry" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -56,7 +47,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -68,7 +59,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -82,7 +72,6 @@ "@turf/tin": "workspace:*", "@types/geojson": "catalog:", "topojson-client": "3.x", - "topojson-server": "3.x", - "tslib": "catalog:" + "topojson-server": "3.x" } } diff --git a/packages/turf-convex/package.json b/packages/turf-convex/package.json index 596bfb2c7..e31521da1 100644 --- a/packages/turf-convex/package.json +++ b/packages/turf-convex/package.json @@ -21,20 +21,11 @@ "gis" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -43,7 +34,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -54,7 +45,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -63,7 +53,6 @@ "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "catalog:", - "concaveman": "^1.2.1", - "tslib": "catalog:" + "concaveman": "^1.2.1" } } diff --git a/packages/turf-destination/package.json b/packages/turf-destination/package.json index 875ec8fe0..896ac7946 100644 --- a/packages/turf-destination/package.json +++ b/packages/turf-destination/package.json @@ -28,20 +28,11 @@ "km" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -50,7 +41,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -61,7 +52,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -69,7 +59,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-difference/package.json b/packages/turf-difference/package.json index 0162345cb..9d409714a 100644 --- a/packages/turf-difference/package.json +++ b/packages/turf-difference/package.json @@ -21,20 +21,11 @@ "gis" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -43,7 +34,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -53,7 +44,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -62,7 +52,6 @@ "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "catalog:", - "polyclip-ts": "^0.16.8", - "tslib": "catalog:" + "polyclip-ts": "^0.16.8" } } diff --git a/packages/turf-directional-mean/package.json b/packages/turf-directional-mean/package.json index 7668fe9cf..b2398cb95 100644 --- a/packages/turf-directional-mean/package.json +++ b/packages/turf-directional-mean/package.json @@ -24,20 +24,11 @@ "directional-mean" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -56,7 +47,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -69,7 +59,6 @@ "@turf/invariant": "workspace:*", "@turf/length": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-dissolve/package.json b/packages/turf-dissolve/package.json index 6f28e3801..5ac2eac77 100644 --- a/packages/turf-dissolve/package.json +++ b/packages/turf-dissolve/package.json @@ -24,20 +24,11 @@ "polygon" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -56,7 +47,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -67,7 +57,6 @@ "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "catalog:", - "polyclip-ts": "^0.16.8", - "tslib": "catalog:" + "polyclip-ts": "^0.16.8" } } diff --git a/packages/turf-distance-weight/package.json b/packages/turf-distance-weight/package.json index e7ad5ea27..339ee720b 100644 --- a/packages/turf-distance-weight/package.json +++ b/packages/turf-distance-weight/package.json @@ -24,20 +24,11 @@ "distance-weight" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -56,7 +47,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -66,7 +56,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-distance/package.json b/packages/turf-distance/package.json index f77336fdc..3d9a272d2 100644 --- a/packages/turf-distance/package.json +++ b/packages/turf-distance/package.json @@ -23,20 +23,11 @@ "km" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -45,7 +36,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -55,7 +46,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -63,7 +53,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-ellipse/package.json b/packages/turf-ellipse/package.json index f7321c921..78d559498 100644 --- a/packages/turf-ellipse/package.json +++ b/packages/turf-ellipse/package.json @@ -25,20 +25,11 @@ "ellipse" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -47,7 +38,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -63,7 +54,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -74,7 +64,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/transform-rotate": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-envelope/package.json b/packages/turf-envelope/package.json index 804b8505b..49722f0b2 100644 --- a/packages/turf-envelope/package.json +++ b/packages/turf-envelope/package.json @@ -24,20 +24,11 @@ "extent" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -56,7 +47,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -64,7 +54,6 @@ "@turf/bbox": "workspace:*", "@turf/bbox-polygon": "workspace:*", "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-explode/package.json b/packages/turf-explode/package.json index 4ae636fe8..522a0f01d 100644 --- a/packages/turf-explode/package.json +++ b/packages/turf-explode/package.json @@ -23,20 +23,11 @@ "coordinates" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -45,7 +36,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -55,7 +46,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -63,7 +53,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-flatten/package.json b/packages/turf-flatten/package.json index 49449fb54..346fcce9c 100644 --- a/packages/turf-flatten/package.json +++ b/packages/turf-flatten/package.json @@ -28,20 +28,11 @@ "featurecollection" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -50,7 +41,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -61,7 +52,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -69,7 +59,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-flip/package.json b/packages/turf-flip/package.json index e48e0d82f..d1c12b8da 100644 --- a/packages/turf-flip/package.json +++ b/packages/turf-flip/package.json @@ -23,20 +23,11 @@ "flip" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -45,7 +36,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -56,7 +47,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -65,7 +55,6 @@ "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-geojson-rbush/package.json b/packages/turf-geojson-rbush/package.json index 700f11207..37e147e0e 100644 --- a/packages/turf-geojson-rbush/package.json +++ b/packages/turf-geojson-rbush/package.json @@ -29,20 +29,11 @@ "rbush" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -51,7 +42,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -65,7 +56,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -75,7 +65,6 @@ "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "catalog:", - "rbush": "^3.0.1", - "tslib": "catalog:" + "rbush": "^3.0.1" } } diff --git a/packages/turf-great-circle/package.json b/packages/turf-great-circle/package.json index c14ba28ce..27f822591 100644 --- a/packages/turf-great-circle/package.json +++ b/packages/turf-great-circle/package.json @@ -30,20 +30,11 @@ "circle" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -52,7 +43,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -64,7 +55,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -73,7 +63,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@types/geojson": "catalog:", - "arc": "^0.2.0", - "tslib": "catalog:" + "arc": "^0.2.0" } } diff --git a/packages/turf-helpers/package.json b/packages/turf-helpers/package.json index 8d0f2b3e8..e42c5dd8e 100644 --- a/packages/turf-helpers/package.json +++ b/packages/turf-helpers/package.json @@ -29,20 +29,11 @@ "geojson" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -51,7 +42,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -61,12 +52,10 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-hex-grid/package.json b/packages/turf-hex-grid/package.json index ab3adcd73..8e5e3684b 100644 --- a/packages/turf-hex-grid/package.json +++ b/packages/turf-hex-grid/package.json @@ -33,20 +33,11 @@ "geojson" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -55,7 +46,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -68,7 +59,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -78,7 +68,6 @@ "@turf/helpers": "workspace:*", "@turf/intersect": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-interpolate/package.json b/packages/turf-interpolate/package.json index de0212603..c45ca7077 100644 --- a/packages/turf-interpolate/package.json +++ b/packages/turf-interpolate/package.json @@ -25,20 +25,11 @@ "interpolate" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -47,7 +38,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -60,7 +51,6 @@ "chromatism": "^3.0.0", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -77,7 +67,6 @@ "@turf/point-grid": "workspace:*", "@turf/square-grid": "workspace:*", "@turf/triangle-grid": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-intersect/package.json b/packages/turf-intersect/package.json index dcf93c261..db5655cb6 100644 --- a/packages/turf-intersect/package.json +++ b/packages/turf-intersect/package.json @@ -22,20 +22,11 @@ "intersect" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -44,7 +35,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -55,7 +46,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -64,7 +54,6 @@ "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "catalog:", - "polyclip-ts": "^0.16.8", - "tslib": "catalog:" + "polyclip-ts": "^0.16.8" } } diff --git a/packages/turf-invariant/package.json b/packages/turf-invariant/package.json index b299b8ff0..4e5587117 100644 --- a/packages/turf-invariant/package.json +++ b/packages/turf-invariant/package.json @@ -26,20 +26,11 @@ "expectations" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -48,7 +39,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -58,13 +49,11 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-isobands/package.json b/packages/turf-isobands/package.json index ca5c27369..be7f884e5 100644 --- a/packages/turf-isobands/package.json +++ b/packages/turf-isobands/package.json @@ -30,20 +30,11 @@ "filled" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -52,7 +43,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -67,7 +58,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -80,7 +70,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-isolines/package.json b/packages/turf-isolines/package.json index cf4dc74c4..47b356cd1 100644 --- a/packages/turf-isolines/package.json +++ b/packages/turf-isolines/package.json @@ -29,20 +29,11 @@ "topography" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -51,7 +42,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -67,7 +58,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -77,7 +67,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-kinks/package.json b/packages/turf-kinks/package.json index e5a51b500..6da19cbf2 100644 --- a/packages/turf-kinks/package.json +++ b/packages/turf-kinks/package.json @@ -22,20 +22,11 @@ "self-intersection" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -44,7 +35,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -56,14 +47,12 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" }, "dependencies": { "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-length/package.json b/packages/turf-length/package.json index 940db1447..a4f93b173 100644 --- a/packages/turf-length/package.json +++ b/packages/turf-length/package.json @@ -29,20 +29,11 @@ "gis" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -51,7 +42,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -61,7 +52,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -70,7 +60,6 @@ "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-line-arc/package.json b/packages/turf-line-arc/package.json index a4beac1db..215ad57c3 100644 --- a/packages/turf-line-arc/package.json +++ b/packages/turf-line-arc/package.json @@ -21,20 +21,11 @@ "gif" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -43,7 +34,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -55,7 +46,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -64,7 +54,6 @@ "@turf/circle": "workspace:*", "@turf/destination": "workspace:*", "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-line-chunk/package.json b/packages/turf-line-chunk/package.json index 9a96fed3d..87ac4718b 100644 --- a/packages/turf-line-chunk/package.json +++ b/packages/turf-line-chunk/package.json @@ -30,20 +30,11 @@ "line segment" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -52,7 +43,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -64,7 +55,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -74,7 +64,6 @@ "@turf/length": "workspace:*", "@turf/line-slice-along": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-line-intersect/package.json b/packages/turf-line-intersect/package.json index 5289f165d..96dd66d3b 100644 --- a/packages/turf-line-intersect/package.json +++ b/packages/turf-line-intersect/package.json @@ -28,20 +28,11 @@ "intersect" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -50,7 +41,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -61,7 +52,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -69,7 +59,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@types/geojson": "catalog:", - "sweepline-intersections": "^1.5.0", - "tslib": "catalog:" + "sweepline-intersections": "^2.0.1" } } diff --git a/packages/turf-line-offset/package.json b/packages/turf-line-offset/package.json index d2a4364c2..a89b31a84 100644 --- a/packages/turf-line-offset/package.json +++ b/packages/turf-line-offset/package.json @@ -28,20 +28,11 @@ "offset" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -50,7 +41,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tstyche" @@ -63,7 +54,6 @@ "load-json-file": "^7.0.1", "tape": "catalog:", "tstyche": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -72,7 +62,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-line-overlap/package.json b/packages/turf-line-overlap/package.json index 6b96d4c0b..d83e7fcd9 100644 --- a/packages/turf-line-overlap/package.json +++ b/packages/turf-line-overlap/package.json @@ -27,20 +27,11 @@ "overlap" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -60,7 +51,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -74,7 +64,6 @@ "@turf/meta": "workspace:*", "@turf/nearest-point-on-line": "workspace:*", "@types/geojson": "catalog:", - "fast-deep-equal": "^3.1.3", - "tslib": "catalog:" + "fast-deep-equal": "^3.1.3" } } diff --git a/packages/turf-line-segment/package.json b/packages/turf-line-segment/package.json index 3cd3fd08a..7e6925e30 100644 --- a/packages/turf-line-segment/package.json +++ b/packages/turf-line-segment/package.json @@ -22,20 +22,11 @@ "segment" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -44,7 +35,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -54,7 +45,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -63,7 +53,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-line-slice-along/package.json b/packages/turf-line-slice-along/package.json index e46b77375..cf0eb8b7a 100644 --- a/packages/turf-line-slice-along/package.json +++ b/packages/turf-line-slice-along/package.json @@ -22,20 +22,11 @@ "line-slice" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -44,7 +35,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -56,7 +47,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -65,7 +55,6 @@ "@turf/destination": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-line-slice/package.json b/packages/turf-line-slice/package.json index 671f2210b..d48de78f3 100644 --- a/packages/turf-line-slice/package.json +++ b/packages/turf-line-slice/package.json @@ -26,20 +26,11 @@ "distance" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -48,7 +39,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -59,7 +50,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -68,7 +58,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/nearest-point-on-line": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-line-split/package.json b/packages/turf-line-split/package.json index fab53e185..6273ada9d 100644 --- a/packages/turf-line-split/package.json +++ b/packages/turf-line-split/package.json @@ -27,20 +27,11 @@ "split" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -59,7 +50,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -74,7 +64,6 @@ "@turf/meta": "workspace:*", "@turf/nearest-point-on-line": "workspace:*", "@turf/truncate": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-line-to-polygon/package.json b/packages/turf-line-to-polygon/package.json index 72826efe5..764a7c927 100644 --- a/packages/turf-line-to-polygon/package.json +++ b/packages/turf-line-to-polygon/package.json @@ -27,20 +27,11 @@ "line" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -60,7 +51,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -70,7 +60,6 @@ "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-mask/package.json b/packages/turf-mask/package.json index 18ced705d..05beb8b59 100644 --- a/packages/turf-mask/package.json +++ b/packages/turf-mask/package.json @@ -22,20 +22,11 @@ "polygon" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -44,7 +35,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -56,7 +47,6 @@ "load-json-file": "^7.0.1", "mkdirp": "^3.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -65,7 +55,6 @@ "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@types/geojson": "catalog:", - "polyclip-ts": "^0.16.8", - "tslib": "catalog:" + "polyclip-ts": "^0.16.8" } } diff --git a/packages/turf-meta/package.json b/packages/turf-meta/package.json index 3b3c4ad44..e7d71053e 100644 --- a/packages/turf-meta/package.json +++ b/packages/turf-meta/package.json @@ -44,20 +44,11 @@ "lineReduce" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -66,7 +57,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -77,13 +68,11 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-midpoint/package.json b/packages/turf-midpoint/package.json index f3f24b63a..37b089953 100644 --- a/packages/turf-midpoint/package.json +++ b/packages/turf-midpoint/package.json @@ -24,20 +24,11 @@ "line" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -55,7 +46,6 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -64,7 +54,6 @@ "@turf/destination": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-moran-index/package.json b/packages/turf-moran-index/package.json index 6faa3392e..a49f10192 100644 --- a/packages/turf-moran-index/package.json +++ b/packages/turf-moran-index/package.json @@ -24,20 +24,11 @@ "moran-index" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -56,7 +47,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -65,7 +55,6 @@ "@turf/distance-weight": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-nearest-neighbor-analysis/package.json b/packages/turf-nearest-neighbor-analysis/package.json index c7f307fa5..a94b4fbb7 100644 --- a/packages/turf-nearest-neighbor-analysis/package.json +++ b/packages/turf-nearest-neighbor-analysis/package.json @@ -24,20 +24,11 @@ "nearest-neighbor" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -57,7 +48,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -71,7 +61,6 @@ "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@turf/nearest-point": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-nearest-point-on-line/package.json b/packages/turf-nearest-point-on-line/package.json index 1681d1358..628cf162b 100644 --- a/packages/turf-nearest-point-on-line/package.json +++ b/packages/turf-nearest-point-on-line/package.json @@ -23,20 +23,11 @@ "access": "public" }, "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -45,7 +36,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -59,7 +50,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -69,7 +59,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-nearest-point-to-line/package.json b/packages/turf-nearest-point-to-line/package.json index 61a6dbee1..1e84aa9cd 100644 --- a/packages/turf-nearest-point-to-line/package.json +++ b/packages/turf-nearest-point-to-line/package.json @@ -27,20 +27,11 @@ "nearest-point-to-line" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -63,7 +54,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -73,7 +63,6 @@ "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/point-to-line-distance": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-nearest-point/package.json b/packages/turf-nearest-point/package.json index d125c87cc..d1e77a2bc 100644 --- a/packages/turf-nearest-point/package.json +++ b/packages/turf-nearest-point/package.json @@ -25,20 +25,11 @@ "point" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -47,7 +38,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -58,7 +49,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -68,7 +58,6 @@ "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-planepoint/package.json b/packages/turf-planepoint/package.json index b76917694..696c4f2cf 100644 --- a/packages/turf-planepoint/package.json +++ b/packages/turf-planepoint/package.json @@ -24,20 +24,11 @@ "interpolation" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -56,14 +47,12 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-point-grid/package.json b/packages/turf-point-grid/package.json index addbd807f..dcb951fba 100644 --- a/packages/turf-point-grid/package.json +++ b/packages/turf-point-grid/package.json @@ -27,20 +27,11 @@ "geojson" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -62,7 +53,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -72,7 +62,6 @@ "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-point-on-feature/package.json b/packages/turf-point-on-feature/package.json index bbadc7986..9ece00db1 100644 --- a/packages/turf-point-on-feature/package.json +++ b/packages/turf-point-on-feature/package.json @@ -25,20 +25,11 @@ "polygon" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -47,7 +38,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -58,7 +49,6 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -69,7 +59,6 @@ "@turf/explode": "workspace:*", "@turf/helpers": "workspace:*", "@turf/nearest-point": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-point-to-line-distance/package.json b/packages/turf-point-to-line-distance/package.json index a797f3b9d..1e3511cdc 100644 --- a/packages/turf-point-to-line-distance/package.json +++ b/packages/turf-point-to-line-distance/package.json @@ -25,20 +25,11 @@ "distance" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -47,7 +38,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -59,7 +50,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -74,7 +64,6 @@ "@turf/projection": "workspace:*", "@turf/rhumb-bearing": "workspace:*", "@turf/rhumb-distance": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-point-to-polygon-distance/package.json b/packages/turf-point-to-polygon-distance/package.json index 84c9ee08f..f30499744 100644 --- a/packages/turf-point-to-polygon-distance/package.json +++ b/packages/turf-point-to-polygon-distance/package.json @@ -27,20 +27,11 @@ "distance" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -59,7 +50,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -71,7 +61,6 @@ "@turf/meta": "workspace:*", "@turf/point-to-line-distance": "workspace:*", "@turf/polygon-to-line": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-points-within-polygon/package.json b/packages/turf-points-within-polygon/package.json index 431c547f3..91df340b1 100644 --- a/packages/turf-points-within-polygon/package.json +++ b/packages/turf-points-within-polygon/package.json @@ -24,20 +24,11 @@ "featurecollection" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -56,7 +47,6 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -64,7 +54,6 @@ "@turf/boolean-point-in-polygon": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-polygon-smooth/package.json b/packages/turf-polygon-smooth/package.json index 165ffa3c2..3e82607d7 100644 --- a/packages/turf-polygon-smooth/package.json +++ b/packages/turf-polygon-smooth/package.json @@ -25,20 +25,11 @@ "polygon" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -47,7 +38,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -58,7 +49,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -66,7 +56,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-polygon-tangents/package.json b/packages/turf-polygon-tangents/package.json index 46cf9ab4d..b0a510fba 100644 --- a/packages/turf-polygon-tangents/package.json +++ b/packages/turf-polygon-tangents/package.json @@ -28,20 +28,11 @@ "polygon" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -50,7 +41,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -61,7 +52,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -73,7 +63,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/nearest-point": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-polygon-to-line/package.json b/packages/turf-polygon-to-line/package.json index 2d1dcf15e..86acb1166 100644 --- a/packages/turf-polygon-to-line/package.json +++ b/packages/turf-polygon-to-line/package.json @@ -24,20 +24,11 @@ "polygon" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -56,7 +47,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -64,7 +54,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-polygonize/package.json b/packages/turf-polygonize/package.json index 0c8e274f7..780beb562 100644 --- a/packages/turf-polygonize/package.json +++ b/packages/turf-polygonize/package.json @@ -27,20 +27,11 @@ "polygonize" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -60,7 +51,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -71,7 +61,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-projection/package.json b/packages/turf-projection/package.json index 00c54098f..fcdfe486b 100644 --- a/packages/turf-projection/package.json +++ b/packages/turf-projection/package.json @@ -35,20 +35,11 @@ "EPSG:102113" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -57,7 +48,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -70,7 +61,6 @@ "load-json-file": "^7.0.1", "proj4": "^2.9.2", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -79,7 +69,6 @@ "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-quadrat-analysis/package.json b/packages/turf-quadrat-analysis/package.json index 0454b2e7e..1be1f2647 100644 --- a/packages/turf-quadrat-analysis/package.json +++ b/packages/turf-quadrat-analysis/package.json @@ -24,20 +24,11 @@ "quadrat-analysis" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -57,7 +48,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -72,7 +62,6 @@ "@turf/point-grid": "workspace:*", "@turf/random": "workspace:*", "@turf/square-grid": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-random/package.json b/packages/turf-random/package.json index 3bd7795db..eaebd46c2 100644 --- a/packages/turf-random/package.json +++ b/packages/turf-random/package.json @@ -21,20 +21,11 @@ "gis" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -43,7 +34,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -52,13 +43,11 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-rectangle-grid/package.json b/packages/turf-rectangle-grid/package.json index 776befb14..b37b2aaac 100644 --- a/packages/turf-rectangle-grid/package.json +++ b/packages/turf-rectangle-grid/package.json @@ -27,20 +27,11 @@ "cartesian" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -61,7 +52,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -70,7 +60,6 @@ "@turf/boolean-intersects": "workspace:*", "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-rewind/package.json b/packages/turf-rewind/package.json index cbd55b1ea..cb6da6404 100644 --- a/packages/turf-rewind/package.json +++ b/packages/turf-rewind/package.json @@ -29,20 +29,11 @@ "rewind" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -51,7 +42,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -62,7 +53,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -73,7 +63,6 @@ "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-rhumb-bearing/package.json b/packages/turf-rhumb-bearing/package.json index 8679e7502..6cafb9ee8 100644 --- a/packages/turf-rhumb-bearing/package.json +++ b/packages/turf-rhumb-bearing/package.json @@ -29,20 +29,11 @@ "rhumb line" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -51,7 +42,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -61,7 +52,6 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -69,7 +59,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-rhumb-destination/package.json b/packages/turf-rhumb-destination/package.json index b8d203d9b..a9ddee6b2 100644 --- a/packages/turf-rhumb-destination/package.json +++ b/packages/turf-rhumb-destination/package.json @@ -33,20 +33,11 @@ "km" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -55,7 +46,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -66,7 +57,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -74,7 +64,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-rhumb-distance/package.json b/packages/turf-rhumb-distance/package.json index 1c0e8c7fa..0b7939b01 100644 --- a/packages/turf-rhumb-distance/package.json +++ b/packages/turf-rhumb-distance/package.json @@ -31,20 +31,11 @@ "km" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -53,7 +44,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -64,7 +55,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -72,7 +62,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/invariant": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-sample/package.json b/packages/turf-sample/package.json index 1286aceb3..ca8d065b0 100644 --- a/packages/turf-sample/package.json +++ b/packages/turf-sample/package.json @@ -23,20 +23,11 @@ "turf" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -45,7 +36,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -54,13 +45,11 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-sector/package.json b/packages/turf-sector/package.json index 1c1efa5da..9ebd4a12d 100644 --- a/packages/turf-sector/package.json +++ b/packages/turf-sector/package.json @@ -21,20 +21,11 @@ "gif" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -43,7 +34,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -55,7 +46,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -66,7 +56,6 @@ "@turf/invariant": "workspace:*", "@turf/line-arc": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-shortest-path/package.json b/packages/turf-shortest-path/package.json index 571d38deb..fa2a05bb2 100644 --- a/packages/turf-shortest-path/package.json +++ b/packages/turf-shortest-path/package.json @@ -27,20 +27,11 @@ "path" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -61,7 +52,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -76,7 +66,6 @@ "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/transform-scale": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-simplify/package.json b/packages/turf-simplify/package.json index c63106b5f..b4f7f5d6b 100644 --- a/packages/turf-simplify/package.json +++ b/packages/turf-simplify/package.json @@ -29,20 +29,11 @@ "peucker" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -51,7 +42,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -63,7 +54,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -73,7 +63,6 @@ "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-square-grid/package.json b/packages/turf-square-grid/package.json index 52ad9d278..2134305b3 100644 --- a/packages/turf-square-grid/package.json +++ b/packages/turf-square-grid/package.json @@ -24,20 +24,11 @@ "grid" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -57,7 +48,6 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -65,7 +55,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/rectangle-grid": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-square/package.json b/packages/turf-square/package.json index 662ded837..6bff50fa2 100644 --- a/packages/turf-square/package.json +++ b/packages/turf-square/package.json @@ -23,20 +23,11 @@ "extent" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -45,7 +36,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -54,14 +45,12 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-standard-deviational-ellipse/package.json b/packages/turf-standard-deviational-ellipse/package.json index 098bdf3cf..b7c3314ca 100644 --- a/packages/turf-standard-deviational-ellipse/package.json +++ b/packages/turf-standard-deviational-ellipse/package.json @@ -26,20 +26,11 @@ "directional distribution" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -48,7 +39,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -61,7 +52,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -73,7 +63,6 @@ "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/points-within-polygon": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-tag/package.json b/packages/turf-tag/package.json index 0b8e5561e..3fc327543 100644 --- a/packages/turf-tag/package.json +++ b/packages/turf-tag/package.json @@ -27,20 +27,11 @@ "analysis" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -59,7 +50,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -68,7 +58,6 @@ "@turf/clone": "workspace:*", "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-tesselate/package.json b/packages/turf-tesselate/package.json index d9be8eed7..ba1c081b5 100644 --- a/packages/turf-tesselate/package.json +++ b/packages/turf-tesselate/package.json @@ -32,20 +32,11 @@ "triangles" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -54,7 +45,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -63,7 +54,6 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, @@ -71,7 +61,6 @@ "@turf/helpers": "workspace:*", "@types/earcut": "^2.1.4", "@types/geojson": "catalog:", - "earcut": "^2.2.4", - "tslib": "catalog:" + "earcut": "^2.2.4" } } diff --git a/packages/turf-tin/package.json b/packages/turf-tin/package.json index f7ed17841..9c7b1d4d3 100644 --- a/packages/turf-tin/package.json +++ b/packages/turf-tin/package.json @@ -22,20 +22,11 @@ "triangulate" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -44,7 +35,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -54,13 +45,11 @@ "@types/tape": "catalog:", "benchmark": "catalog:", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:" }, "dependencies": { "@turf/helpers": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-transform-rotate/package.json b/packages/turf-transform-rotate/package.json index 53f0eb400..42c75837e 100644 --- a/packages/turf-transform-rotate/package.json +++ b/packages/turf-transform-rotate/package.json @@ -27,20 +27,11 @@ "rotate" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -49,7 +40,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -61,7 +52,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -75,7 +65,6 @@ "@turf/rhumb-bearing": "workspace:*", "@turf/rhumb-destination": "workspace:*", "@turf/rhumb-distance": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-transform-scale/package.json b/packages/turf-transform-scale/package.json index 426cb8396..45c8420c4 100644 --- a/packages/turf-transform-scale/package.json +++ b/packages/turf-transform-scale/package.json @@ -31,20 +31,11 @@ "zoom-out" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -53,7 +44,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -67,7 +58,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -83,7 +73,6 @@ "@turf/rhumb-bearing": "workspace:*", "@turf/rhumb-destination": "workspace:*", "@turf/rhumb-distance": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-transform-translate/package.json b/packages/turf-transform-translate/package.json index e998203ae..473105119 100644 --- a/packages/turf-transform-translate/package.json +++ b/packages/turf-transform-translate/package.json @@ -29,20 +29,11 @@ "shift" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -51,7 +42,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -63,7 +54,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -74,7 +64,6 @@ "@turf/invariant": "workspace:*", "@turf/meta": "workspace:*", "@turf/rhumb-destination": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-triangle-grid/package.json b/packages/turf-triangle-grid/package.json index 2ba99c3c3..aaa3ee5af 100644 --- a/packages/turf-triangle-grid/package.json +++ b/packages/turf-triangle-grid/package.json @@ -25,20 +25,11 @@ "gis" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -47,7 +38,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -60,7 +51,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -69,7 +59,6 @@ "@turf/distance": "workspace:*", "@turf/helpers": "workspace:*", "@turf/intersect": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-truncate/package.json b/packages/turf-truncate/package.json index c0ea00b9d..cfa5f55d5 100644 --- a/packages/turf-truncate/package.json +++ b/packages/turf-truncate/package.json @@ -26,20 +26,11 @@ "truncate" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -48,7 +39,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -59,7 +50,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -67,7 +57,6 @@ "dependencies": { "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", - "@types/geojson": "catalog:", - "tslib": "catalog:" + "@types/geojson": "catalog:" } } diff --git a/packages/turf-union/package.json b/packages/turf-union/package.json index 60df8f255..ae3f44414 100644 --- a/packages/turf-union/package.json +++ b/packages/turf-union/package.json @@ -21,20 +21,11 @@ "gif" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -43,7 +34,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -54,7 +45,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -63,7 +53,6 @@ "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "catalog:", - "polyclip-ts": "^0.16.8", - "tslib": "catalog:" + "polyclip-ts": "^0.16.8" } } diff --git a/packages/turf-unkink-polygon/package.json b/packages/turf-unkink-polygon/package.json index 1245c035e..b69971636 100644 --- a/packages/turf-unkink-polygon/package.json +++ b/packages/turf-unkink-polygon/package.json @@ -24,20 +24,11 @@ "self-intersection" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -46,7 +37,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts", "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts" @@ -59,7 +50,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -70,7 +60,6 @@ "@turf/helpers": "workspace:*", "@turf/meta": "workspace:*", "@types/geojson": "catalog:", - "rbush": "^3.0.1", - "tslib": "catalog:" + "rbush": "^3.0.1" } } diff --git a/packages/turf-voronoi/package.json b/packages/turf-voronoi/package.json index 2d3a5bd06..447beebaf 100644 --- a/packages/turf-voronoi/package.json +++ b/packages/turf-voronoi/package.json @@ -30,20 +30,11 @@ "points" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "sideEffects": false, @@ -52,7 +43,7 @@ ], "scripts": { "bench": "tsx bench.ts", - "build": "tsup --config ../../tsup.config.ts", + "build": "tsc", "test": "pnpm run /test:.*/", "test:tape": "tsx test.ts" }, @@ -62,7 +53,6 @@ "benchmark": "catalog:", "load-json-file": "^7.0.1", "tape": "catalog:", - "tsup": "catalog:", "tsx": "catalog:", "typescript": "catalog:", "write-json-file": "^6.0.0" @@ -73,7 +63,6 @@ "@turf/invariant": "workspace:*", "@types/d3-voronoi": "^1.1.12", "@types/geojson": "catalog:", - "d3-voronoi": "1.1.2", - "tslib": "catalog:" + "d3-voronoi": "1.1.2" } } diff --git a/packages/turf/package.json b/packages/turf/package.json index cbd66d15c..a10c00978 100644 --- a/packages/turf/package.json +++ b/packages/turf/package.json @@ -44,20 +44,11 @@ "sample" ], "type": "module", - "main": "dist/cjs/index.cjs", - "module": "dist/esm/index.js", - "types": "dist/esm/index.d.ts", "exports": { "./package.json": "./package.json", ".": { - "import": { - "types": "./dist/esm/index.d.ts", - "default": "./dist/esm/index.js" - }, - "require": { - "types": "./dist/cjs/index.d.cts", - "default": "./dist/cjs/index.cjs" - } + "types": "./dist/index.d.ts", + "default": "./dist/index.js" } }, "browser": "turf.min.js", @@ -67,7 +58,7 @@ "turf.min.js" ], "scripts": { - "build": "tsup --config ../../tsup.config.ts && rollup -c rollup.config.js", + "build": "tsc && rollup -c rollup.config.js", "last-checks": "pnpm run last-checks:testjs && pnpm run last-checks:example", "last-checks:example": "tsx test.example.js", "last-checks:testjs": "tsx test.ts", @@ -87,7 +78,6 @@ "rollup": "^4.40.1", "rollup-plugin-polyfill-node": "^0.13.0", "tape": "^5.9.0", - "tsup": "^8.4.0", "tsx": "^4.19.4", "typescript": "^5.8.3" }, @@ -207,7 +197,6 @@ "@turf/unkink-polygon": "workspace:*", "@turf/voronoi": "workspace:*", "@types/geojson": "catalog:", - "@types/kdbush": "^3.0.5", - "tslib": "^2.8.1" + "@types/kdbush": "^3.0.5" } } diff --git a/packages/turf/test.ts b/packages/turf/test.ts index 4d9f6c10b..dafe14cd9 100644 --- a/packages/turf/test.ts +++ b/packages/turf/test.ts @@ -1,6 +1,6 @@ -import fs from "fs"; -import path from "path"; -import { fileURLToPath } from "url"; +import fs from "node:fs"; +import path from "node:path"; +import { fileURLToPath } from "node:url"; import { glob } from "glob"; import test from "tape"; import camelCase from "camelcase"; @@ -19,10 +19,7 @@ for (const name of fs.readdirSync(directory)) { if (!fs.existsSync(pckgPath)) continue; const pckg = JSON.parse(fs.readFileSync(pckgPath)); - let mainFile = path.join(directory, name, pckg.main); - if (!fs.existsSync(mainFile)) { - mainFile += ".js"; - } + let mainFile = path.join(directory, name, pckg["exports"]["."].default); const index = fs.readFileSync(mainFile, "utf8"); // Cater for JS or TS test files. @@ -221,8 +218,8 @@ test("turf -- parsing dependencies from index.js", (t) => { // Test for missing modules test("turf -- missing modules", (t) => { const files = { - typescript: fs.readFileSync(path.join(__dirname, "dist/cjs/index.d.cts")), - modules: fs.readFileSync(path.join(__dirname, "dist/cjs/index.cjs")), + typescript: fs.readFileSync(path.join(__dirname, "dist/index.d.ts")), + modules: fs.readFileSync(path.join(__dirname, "dist/index.js")), }; modules.forEach(({ name }) => { @@ -331,7 +328,7 @@ const turfTypescriptPath = path.join(__dirname, "..", "turf-*", "index.d.ts"); // Test Strings const requireString = `import test from 'tape'; -import * as turf from './dist/esm/index.js'; +import * as turf from './dist/index.js'; `; /** diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index baa1fb368..5288c737f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -21,15 +21,9 @@ catalogs: tape: specifier: ^5.9.0 version: 5.9.0 - tslib: - specifier: ^2.8.1 - version: 2.8.1 tstyche: specifier: ^6.2.0 version: 6.2.0 - tsup: - specifier: ^8.4.0 - version: 8.4.0 tsx: specifier: ^4.19.4 version: 4.19.4 @@ -80,9 +74,6 @@ importers: documentation: specifier: ^14.0.3 version: 14.0.3 - es-check: - specifier: ^9.0.0 - version: 9.0.0 eslint: specifier: ^9.31.0 version: 9.31.0 @@ -122,9 +113,6 @@ importers: 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.8.2) typescript: specifier: ^5.8.3 version: 5.8.3 @@ -485,9 +473,6 @@ importers: '@types/kdbush': specifier: ^3.0.5 version: 3.0.5 - tslib: - specifier: ^2.8.1 - version: 2.8.1 devDependencies: '@babel/core': specifier: ^7.26.10 @@ -528,9 +513,6 @@ importers: 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.8.2) tsx: specifier: ^4.19.4 version: 4.19.4 @@ -558,9 +540,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -577,9 +556,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -604,9 +580,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/distance': specifier: workspace:* @@ -632,9 +605,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -656,9 +626,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -675,9 +642,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -699,9 +663,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -715,9 +676,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -736,9 +694,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/bbox': specifier: workspace:* @@ -758,9 +713,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -779,9 +731,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -795,9 +744,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -816,9 +762,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/destination': specifier: workspace:* @@ -835,9 +778,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -859,9 +799,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -878,9 +815,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -902,9 +836,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -921,9 +852,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -942,9 +870,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -961,9 +886,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -994,9 +916,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1019,9 +938,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1052,9 +968,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1074,9 +987,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1104,9 +1014,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1126,9 +1033,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1153,9 +1057,6 @@ importers: geojson-equality-ts: specifier: ^1.0.2 version: 1.0.2 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1175,9 +1076,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1199,9 +1097,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1221,9 +1116,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1254,9 +1146,6 @@ importers: geojson-equality-ts: specifier: ^1.0.2 version: 1.0.2 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1276,9 +1165,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1303,9 +1189,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1322,9 +1205,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1349,9 +1229,6 @@ importers: point-in-polygon-hao: specifier: ^1.1.0 version: 1.1.0 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1365,9 +1242,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1386,9 +1260,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1405,9 +1276,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1435,9 +1303,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1460,9 +1325,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1505,9 +1367,6 @@ importers: geojson-polygon-self-intersections: specifier: ^1.2.1 version: 1.2.1 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1530,9 +1389,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1563,9 +1419,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1588,9 +1441,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1624,9 +1474,6 @@ importers: d3-geo: specifier: ^2.0.2 version: 2.0.2 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -1652,9 +1499,6 @@ importers: tstyche: specifier: 'catalog:' version: 6.2.0(typescript@5.8.3) - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1676,9 +1520,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:* @@ -1701,9 +1542,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1728,9 +1566,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/center': specifier: workspace:* @@ -1753,9 +1588,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1786,9 +1618,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/center': specifier: workspace:* @@ -1817,9 +1646,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1850,9 +1676,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1869,9 +1692,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1893,9 +1713,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -1912,9 +1729,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1936,9 +1750,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@placemarkio/check-geojson': specifier: ^0.1.12 @@ -1961,9 +1772,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -1988,9 +1796,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -2013,9 +1818,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2034,9 +1836,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/meta': specifier: workspace:* @@ -2053,9 +1852,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2074,9 +1870,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2090,9 +1883,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2120,9 +1910,6 @@ importers: rbush: specifier: ^3.0.1 version: 3.0.1 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/centroid': specifier: workspace:* @@ -2154,9 +1941,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2187,9 +1971,6 @@ importers: skmeans: specifier: 0.9.7 version: 0.9.7 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/centroid': specifier: workspace:* @@ -2224,9 +2005,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2254,9 +2032,6 @@ importers: rbush: specifier: ^3.0.1 version: 3.0.1 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2273,9 +2048,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2294,9 +2066,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2310,9 +2079,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2349,9 +2115,6 @@ importers: topojson-server: specifier: 3.x version: 3.0.1 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2374,9 +2137,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2401,9 +2161,6 @@ importers: concaveman: specifier: ^1.2.1 version: 1.2.1 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2423,9 +2180,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2447,9 +2201,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -2469,9 +2220,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2496,9 +2244,6 @@ importers: polyclip-ts: specifier: ^0.16.8 version: 0.16.8 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2515,9 +2260,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2554,9 +2296,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2573,9 +2312,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2606,9 +2342,6 @@ importers: polyclip-ts: specifier: ^0.16.8 version: 0.16.8 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2625,9 +2358,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2649,9 +2379,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2668,9 +2395,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2698,9 +2422,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2717,9 +2438,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2750,9 +2468,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@placemarkio/check-geojson': specifier: ^0.1.12 @@ -2787,9 +2502,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2814,9 +2526,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2833,9 +2542,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2854,9 +2560,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2873,9 +2576,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2897,9 +2597,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2916,9 +2613,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2943,9 +2637,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -2962,9 +2653,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -2992,9 +2680,6 @@ importers: rbush: specifier: ^3.0.1 version: 3.0.1 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:* @@ -3020,9 +2705,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3047,9 +2729,6 @@ importers: arc: specifier: ^0.2.0 version: 0.2.0 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -3069,9 +2748,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3087,9 +2763,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -3103,9 +2776,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3130,9 +2800,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:* @@ -3155,9 +2822,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3206,9 +2870,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -3231,9 +2892,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3258,9 +2916,6 @@ importers: polyclip-ts: specifier: ^0.16.8 version: 0.16.8 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -3277,9 +2932,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3298,9 +2950,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -3314,9 +2963,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3350,9 +2996,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/envelope': specifier: workspace:* @@ -3384,9 +3027,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3414,9 +3054,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/envelope': specifier: workspace:* @@ -3448,9 +3085,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3469,9 +3103,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/meta': specifier: workspace:* @@ -3491,9 +3122,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3518,9 +3146,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -3537,9 +3162,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3564,9 +3186,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -3586,9 +3205,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3616,9 +3232,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -3638,9 +3251,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3660,11 +3270,8 @@ importers: specifier: 'catalog:' version: 7946.0.14 sweepline-intersections: - specifier: ^1.5.0 - version: 1.5.0 - tslib: - specifier: 'catalog:' - version: 2.8.1 + specifier: ^2.0.1 + version: 2.0.1(@types/node@22.15.3)(encoding@0.1.13)(rollup@4.40.1)(terser@5.26.0) devDependencies: '@turf/truncate': specifier: workspace:* @@ -3684,9 +3291,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3711,9 +3315,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -3736,9 +3337,6 @@ importers: tstyche: specifier: 'catalog:' version: 6.2.0(typescript@5.8.3) - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3778,9 +3376,6 @@ importers: fast-deep-equal: specifier: ^3.1.3 version: 3.1.3 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -3797,9 +3392,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3824,9 +3416,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -3843,9 +3432,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3870,9 +3456,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -3892,9 +3475,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3922,9 +3502,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/along': specifier: workspace:* @@ -3947,9 +3524,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -3989,9 +3563,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4008,9 +3579,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4038,9 +3606,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4057,9 +3622,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4084,9 +3646,6 @@ importers: polyclip-ts: specifier: ^0.16.8 version: 0.16.8 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4106,9 +3665,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4127,9 +3683,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/random': specifier: workspace:* @@ -4146,9 +3699,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4173,9 +3723,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4189,9 +3736,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4213,9 +3757,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4232,9 +3773,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4274,9 +3812,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -4296,9 +3831,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4326,9 +3858,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4345,9 +3874,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4375,9 +3901,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/along': specifier: workspace:* @@ -4403,9 +3926,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4433,9 +3953,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/circle': specifier: workspace:* @@ -4461,9 +3978,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4485,9 +3999,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4501,9 +4012,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4528,9 +4036,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:* @@ -4553,9 +4058,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4586,9 +4088,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/meta': specifier: workspace:* @@ -4608,9 +4107,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4653,9 +4149,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/circle': specifier: workspace:* @@ -4675,9 +4168,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4711,9 +4201,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4730,9 +4217,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4757,9 +4241,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4773,9 +4254,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4794,9 +4272,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4813,9 +4288,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4849,9 +4321,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4868,9 +4337,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4892,9 +4358,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4911,9 +4374,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4944,9 +4404,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -4963,9 +4420,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -4990,9 +4444,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -5015,9 +4466,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5060,9 +4508,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/nearest-neighbor-analysis': specifier: workspace:* @@ -5082,9 +4527,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5103,9 +4545,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -5119,9 +4558,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5143,9 +4579,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:* @@ -5168,9 +4601,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5201,9 +4631,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -5220,9 +4647,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5244,9 +4668,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/destination': specifier: workspace:* @@ -5263,9 +4684,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5287,9 +4705,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -5309,9 +4724,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5333,9 +4745,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/distance': specifier: workspace:* @@ -5355,9 +4764,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5376,9 +4782,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -5392,9 +4795,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5422,9 +4822,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -5444,9 +4841,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5489,9 +4883,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -5511,9 +4902,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5541,9 +4929,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -5563,9 +4948,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5587,9 +4969,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -5603,9 +4982,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5624,9 +5000,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:* @@ -5646,9 +5019,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5682,9 +5052,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/random': specifier: workspace:* @@ -5707,9 +5074,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5737,9 +5101,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -5756,9 +5117,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5780,9 +5138,6 @@ importers: earcut: specifier: ^2.2.4 version: 2.2.4 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -5796,9 +5151,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5814,9 +5166,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -5830,9 +5179,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5869,9 +5215,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -5891,9 +5234,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -5939,9 +5279,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:* @@ -5967,9 +5304,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -6000,9 +5334,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/truncate': specifier: workspace:* @@ -6022,9 +5353,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -6049,9 +5377,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/bbox-polygon': specifier: workspace:* @@ -6074,9 +5399,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -6098,9 +5420,6 @@ importers: '@types/geojson': specifier: 'catalog:' version: 7946.0.14 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -6117,9 +5436,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -6144,9 +5460,6 @@ importers: polyclip-ts: specifier: ^0.16.8 version: 0.16.8 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -6163,9 +5476,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -6196,9 +5506,6 @@ importers: rbush: specifier: ^3.0.1 version: 3.0.1 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@turf/kinks': specifier: workspace:* @@ -6221,9 +5528,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -6254,9 +5558,6 @@ importers: d3-voronoi: specifier: 1.1.2 version: 1.1.2 - tslib: - specifier: 'catalog:' - version: 2.8.1 devDependencies: '@types/benchmark': specifier: 'catalog:' @@ -6273,9 +5574,6 @@ importers: tape: specifier: 'catalog:' version: 5.9.0 - tsup: - specifier: 'catalog:' - version: 8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2) tsx: specifier: 'catalog:' version: 4.19.4 @@ -6850,13 +6148,6 @@ packages: resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==} 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'} @@ -6870,102 +6161,204 @@ packages: '@emnapi/wasi-threads@1.1.0': resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==} + '@esbuild/aix-ppc64@0.21.5': + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + '@esbuild/aix-ppc64@0.25.3': resolution: {integrity: sha512-W8bFfPA8DowP8l//sxjJLSLkD8iEjMc7cBVyP+u4cEv9sM7mdUCkgsj+t0n/BWPFtv7WWCN5Yzj0N6FJNUUqBQ==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] + '@esbuild/android-arm64@0.21.5': + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + '@esbuild/android-arm64@0.25.3': resolution: {integrity: sha512-XelR6MzjlZuBM4f5z2IQHK6LkK34Cvv6Rj2EntER3lwCBFdg6h2lKbtRjpTTsdEjD/WSe1q8UyPBXP1x3i/wYQ==} engines: {node: '>=18'} cpu: [arm64] os: [android] + '@esbuild/android-arm@0.21.5': + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + '@esbuild/android-arm@0.25.3': resolution: {integrity: sha512-PuwVXbnP87Tcff5I9ngV0lmiSu40xw1At6i3GsU77U7cjDDB4s0X2cyFuBiDa1SBk9DnvWwnGvVaGBqoFWPb7A==} engines: {node: '>=18'} cpu: [arm] os: [android] + '@esbuild/android-x64@0.21.5': + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + '@esbuild/android-x64@0.25.3': resolution: {integrity: sha512-ogtTpYHT/g1GWS/zKM0cc/tIebFjm1F9Aw1boQ2Y0eUQ+J89d0jFY//s9ei9jVIlkYi8AfOjiixcLJSGNSOAdQ==} engines: {node: '>=18'} cpu: [x64] os: [android] + '@esbuild/darwin-arm64@0.21.5': + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + '@esbuild/darwin-arm64@0.25.3': resolution: {integrity: sha512-eESK5yfPNTqpAmDfFWNsOhmIOaQA59tAcF/EfYvo5/QWQCzXn5iUSOnqt3ra3UdzBv073ykTtmeLJZGt3HhA+w==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] + '@esbuild/darwin-x64@0.21.5': + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + '@esbuild/darwin-x64@0.25.3': resolution: {integrity: sha512-Kd8glo7sIZtwOLcPbW0yLpKmBNWMANZhrC1r6K++uDR2zyzb6AeOYtI6udbtabmQpFaxJ8uduXMAo1gs5ozz8A==} 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.21.5': + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.25.3': + resolution: {integrity: sha512-EJiyS70BYybOBpJth3M0KLOus0n+RRMKTYzhYhFeMwp7e/RaajXvP+BWlmEXNk6uk+KAu46j/kaQzr6au+JcIw==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] + '@esbuild/freebsd-x64@0.21.5': + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + '@esbuild/freebsd-x64@0.25.3': resolution: {integrity: sha512-Q+wSjaLpGxYf7zC0kL0nDlhsfuFkoN+EXrx2KSB33RhinWzejOd6AvgmP5JbkgXKmjhmpfgKZq24pneodYqE8Q==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] + '@esbuild/linux-arm64@0.21.5': + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + '@esbuild/linux-arm64@0.25.3': resolution: {integrity: sha512-xCUgnNYhRD5bb1C1nqrDV1PfkwgbswTTBRbAd8aH5PhYzikdf/ddtsYyMXFfGSsb/6t6QaPSzxtbfAZr9uox4A==} engines: {node: '>=18'} cpu: [arm64] os: [linux] + '@esbuild/linux-arm@0.21.5': + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + '@esbuild/linux-arm@0.25.3': resolution: {integrity: sha512-dUOVmAUzuHy2ZOKIHIKHCm58HKzFqd+puLaS424h6I85GlSDRZIA5ycBixb3mFgM0Jdh+ZOSB6KptX30DD8YOQ==} engines: {node: '>=18'} cpu: [arm] os: [linux] + '@esbuild/linux-ia32@0.21.5': + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + '@esbuild/linux-ia32@0.25.3': resolution: {integrity: sha512-yplPOpczHOO4jTYKmuYuANI3WhvIPSVANGcNUeMlxH4twz/TeXuzEP41tGKNGWJjuMhotpGabeFYGAOU2ummBw==} engines: {node: '>=18'} cpu: [ia32] os: [linux] + '@esbuild/linux-loong64@0.21.5': + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + '@esbuild/linux-loong64@0.25.3': resolution: {integrity: sha512-P4BLP5/fjyihmXCELRGrLd793q/lBtKMQl8ARGpDxgzgIKJDRJ/u4r1A/HgpBpKpKZelGct2PGI4T+axcedf6g==} engines: {node: '>=18'} cpu: [loong64] os: [linux] + '@esbuild/linux-mips64el@0.21.5': + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + '@esbuild/linux-mips64el@0.25.3': resolution: {integrity: sha512-eRAOV2ODpu6P5divMEMa26RRqb2yUoYsuQQOuFUexUoQndm4MdpXXDBbUoKIc0iPa4aCO7gIhtnYomkn2x+bag==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] + '@esbuild/linux-ppc64@0.21.5': + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + '@esbuild/linux-ppc64@0.25.3': resolution: {integrity: sha512-ZC4jV2p7VbzTlnl8nZKLcBkfzIf4Yad1SJM4ZMKYnJqZFD4rTI+pBG65u8ev4jk3/MPwY9DvGn50wi3uhdaghg==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] + '@esbuild/linux-riscv64@0.21.5': + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + '@esbuild/linux-riscv64@0.25.3': resolution: {integrity: sha512-LDDODcFzNtECTrUUbVCs6j9/bDVqy7DDRsuIXJg6so+mFksgwG7ZVnTruYi5V+z3eE5y+BJZw7VvUadkbfg7QA==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] + '@esbuild/linux-s390x@0.21.5': + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + '@esbuild/linux-s390x@0.25.3': resolution: {integrity: sha512-s+w/NOY2k0yC2p9SLen+ymflgcpRkvwwa02fqmAwhBRI3SC12uiS10edHHXlVWwfAagYSY5UpmT/zISXPMW3tQ==} engines: {node: '>=18'} cpu: [s390x] os: [linux] + '@esbuild/linux-x64@0.21.5': + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + '@esbuild/linux-x64@0.25.3': resolution: {integrity: sha512-nQHDz4pXjSDC6UfOE1Fw9Q8d6GCAd9KdvMZpfVGWSJztYCarRgSDfOVBY5xwhQXseiyxapkiSJi/5/ja8mRFFA==} engines: {node: '>=18'} @@ -6978,6 +6371,12 @@ packages: cpu: [arm64] os: [netbsd] + '@esbuild/netbsd-x64@0.21.5': + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + '@esbuild/netbsd-x64@0.25.3': resolution: {integrity: sha512-i5Hm68HXHdgv8wkrt+10Bc50zM0/eonPb/a/OFVfB6Qvpiirco5gBA5bz7S2SHuU+Y4LWn/zehzNX14Sp4r27g==} engines: {node: '>=18'} @@ -6990,30 +6389,60 @@ packages: cpu: [arm64] os: [openbsd] + '@esbuild/openbsd-x64@0.21.5': + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + '@esbuild/openbsd-x64@0.25.3': resolution: {integrity: sha512-fpqctI45NnCIDKBH5AXQBsD0NDPbEFczK98hk/aa6HJxbl+UtLkJV2+Bvy5hLSLk3LHmqt0NTkKNso1A9y1a4w==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] + '@esbuild/sunos-x64@0.21.5': + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + '@esbuild/sunos-x64@0.25.3': resolution: {integrity: sha512-ROJhm7d8bk9dMCUZjkS8fgzsPAZEjtRJqCAmVgB0gMrvG7hfmPmz9k1rwO4jSiblFjYmNvbECL9uhaPzONMfgA==} engines: {node: '>=18'} cpu: [x64] os: [sunos] + '@esbuild/win32-arm64@0.21.5': + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + '@esbuild/win32-arm64@0.25.3': resolution: {integrity: sha512-YWcow8peiHpNBiIXHwaswPnAXLsLVygFwCB3A7Bh5jRkIBFWHGmNQ48AlX4xDvQNoMZlPYzjVOQDYEzWCqufMQ==} engines: {node: '>=18'} cpu: [arm64] os: [win32] + '@esbuild/win32-ia32@0.21.5': + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + '@esbuild/win32-ia32@0.25.3': resolution: {integrity: sha512-qspTZOIGoXVS4DpNqUYUs9UxVb04khS1Degaw/MnfMe7goQ3lTfQ13Vw4qY/Nj0979BGvMRpAYbs/BAxEvU8ew==} engines: {node: '>=18'} cpu: [ia32] os: [win32] + '@esbuild/win32-x64@0.21.5': + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + '@esbuild/win32-x64@0.25.3': resolution: {integrity: sha512-ICgUR+kPimx0vvRzf+N/7L7tVSQeE3BYY+NhHRHXS1kBuPO7z2+7ea2HbhDyZdTephgvNvKrlDDKUexuCVBVvg==} engines: {node: '>=18'} @@ -7298,6 +6727,11 @@ packages: resolution: {integrity: sha512-ajBvlKpWucBB17FuQYUShqpqy8GRgYEpJW0vWJbUu1CV9lWyrDCapy0lScU8T8Z6qn49sSwJB3+M+evYIdGg+A==} engines: {node: '>= 0.4'} + '@mapbox/node-pre-gyp@2.0.3': + resolution: {integrity: sha512-uwPAhccfFJlsfCxMYTwOdVfOz3xqyj8xYL3zJj8f0pb30tLohnnFPhLuqp4/qoEz8sNxe4SESZedcBojRefIzg==} + engines: {node: '>=18'} + hasBin: true + '@monorepolint/cli@0.6.0-alpha.5': resolution: {integrity: sha512-HdKoMhSIEQ+rrwE/7+EFJGsu3/T0U9pYOiLlLa1llMtrCiyTFi6fe/2CXvfoch/IdITspRD4Ix2QifYVwUQfIQ==} engines: {node: '>=18'} @@ -7874,9 +7308,6 @@ packages: '@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==} @@ -7953,6 +7384,40 @@ packages: resolution: {integrity: sha512-pWrTcoFNWuwHlA9CvlfSsGWs14JxfN1TH25zM5L7o0pRLhsoZkDnTsXfQRJBEWJoV5DL0jf+Z+sxiud+K0mq1g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@vercel/nft@0.29.4': + resolution: {integrity: sha512-6lLqMNX3TuycBPABycx7A9F1bHQR7kiQln6abjFbPrf5C/05qHM9M5E4PeTE59c7z8g6vHnx1Ioihb2AQl7BTA==} + engines: {node: '>=18'} + hasBin: true + + '@vitest/expect@2.1.9': + resolution: {integrity: sha512-UJCIkTBenHeKT1TTlKMJWy1laZewsRIzYighyYiJKZreqtdxSos/S1t+ktRMQWu2CKqaarrkeszJx1cgC5tGZw==} + + '@vitest/mocker@2.1.9': + resolution: {integrity: sha512-tVL6uJgoUdi6icpxmdrn5YNo3g3Dxv+IHJBr0GXHaEdTcw3F+cPKnsXFhli6nO+f/6SDKPHEK1UN+k+TQv0Ehg==} + peerDependencies: + msw: ^2.4.9 + vite: ^5.0.0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@2.1.9': + resolution: {integrity: sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ==} + + '@vitest/runner@2.1.9': + resolution: {integrity: sha512-ZXSSqTFIrzduD63btIfEyOmNcBmQvgOVsPNPe0jYtESiXkhd8u2erDLnMxmGrDCwHCCHE7hxwRDCT3pt0esT4g==} + + '@vitest/snapshot@2.1.9': + resolution: {integrity: sha512-oBO82rEjsxLNJincVhLhaxxZdEtV0EFHMK5Kmx5sJ6H9L183dHECjiefOAdnqpIgT5eZwT04PoggUnW88vOBNQ==} + + '@vitest/spy@2.1.9': + resolution: {integrity: sha512-E1B35FwzXXTs9FHNK6bDszs7mtydNi5MIfUWpceJ8Xbfb1gBMscAnwLbEu+B44ed6W3XjL9/ehLPHR1fkf1KLQ==} + + '@vitest/utils@2.1.9': + resolution: {integrity: sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==} + '@vue/compiler-core@3.5.13': resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==} @@ -7987,6 +7452,11 @@ packages: resolution: {integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==} engines: {node: ^18.17.0 || >=20.5.0} + acorn-import-attributes@1.9.5: + resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==} + peerDependencies: + acorn: ^8 + acorn-jsx@5.3.2: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: @@ -7996,11 +7466,6 @@ packages: 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==} engines: {node: '>=0.4.0'} @@ -8013,6 +7478,10 @@ packages: resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} engines: {node: '>= 14'} + 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'} @@ -8048,9 +7517,6 @@ packages: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} - any-promise@1.3.0: - resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} - anymatch@3.1.3: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} @@ -8079,6 +7545,10 @@ packages: resolution: {integrity: sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==} engines: {node: '>=8'} + array-find-index@1.0.2: + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} + array-ify@1.0.0: resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} @@ -8094,6 +7564,10 @@ packages: resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} engines: {node: '>= 0.4'} + arrgv@1.0.2: + resolution: {integrity: sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==} + engines: {node: '>=8.0.0'} + arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} @@ -8102,16 +7576,37 @@ packages: resolution: {integrity: sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==} engines: {node: '>=8'} + arrify@3.0.0: + resolution: {integrity: sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==} + engines: {node: '>=12'} + + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + ast-module-types@6.0.1: resolution: {integrity: sha512-WHw67kLXYbZuHTmcdbIrVArCq5wxo6NEuj3hiYAWr8mwJeC+C2mMCIBIWCiDoCye/OF/xelc+teJ1ERoWmnEIA==} engines: {node: '>=18'} + async-sema@3.1.1: + resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} + async@3.2.6: resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + ava@6.4.1: + resolution: {integrity: sha512-vxmPbi1gZx9zhAjHBgw81w/iEDKcrokeRk/fqDTyA2DQygZ0o+dUGRHFOtX8RA5N0heGJTTsIk7+xYxitDb61Q==} + engines: {node: ^18.18 || ^20.8 || ^22 || ^23 || >=24} + hasBin: true + peerDependencies: + '@ava/typescript': '*' + peerDependenciesMeta: + '@ava/typescript': + optional: true + available-typed-arrays@1.0.7: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} @@ -8160,9 +7655,15 @@ packages: resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} engines: {node: '>=8'} + bindings@1.5.0: + resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + bl@4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + blueimp-md5@2.19.0: + resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==} + boolean-jsts@0.0.1: resolution: {integrity: sha512-KB5kMk4thQO+bzkJ6MRTa+5ui+btRK7PiE4xvzDaDg/giG/sbL+htaoYlJqpDvVYax4GHRoQtz2S62iAuagXIA==} @@ -8190,12 +7691,6 @@ packages: buffer@5.7.1: resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} - bundle-require@5.1.0: - resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - peerDependencies: - esbuild: '>=0.18' - byte-size@8.1.1: resolution: {integrity: sha512-tUkzZWK0M/qdoLEqikxBWe4kumyuwjl3HO6zHTr4yEI23EojPtLYXdG1+AQY7MN0cGyNDvEaJ8wiYQm6P2bPxg==} engines: {node: '>=12.17'} @@ -8228,6 +7723,10 @@ packages: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} + callsites@4.2.0: + resolution: {integrity: sha512-kfzR4zzQtAE9PC7CzZsjl3aBNbXWuXiSeOCdLcPpBfGW8YuCqQHcRPFDbr/BPVmd3EEPVpuFzLyuT/cUhPr4OQ==} + engines: {node: '>=12.20'} + camelcase-keys@6.2.2: resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} engines: {node: '>=8'} @@ -8243,9 +7742,17 @@ packages: caniuse-lite@1.0.30001716: resolution: {integrity: sha512-49/c1+x3Kwz7ZIWt+4DvK3aMJy9oYXXG6/97JKsnjdCk/6n9vVyWL8NAwVt95Lwt9eigI10Hl782kDfZUUlRXw==} + cbor@10.0.12: + resolution: {integrity: sha512-exQDevYd7ZQLP4moMQcZkKCVZsXLAtUSflObr3xTh4xzFIv/xBCdvCd6L259kQOUP2kcTC0jvC6PpZIf/WmRXA==} + engines: {node: '>=20'} + ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + chai@5.3.3: + resolution: {integrity: sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==} + engines: {node: '>=18'} + chalk@4.1.0: resolution: {integrity: sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==} engines: {node: '>=10'} @@ -8278,14 +7785,14 @@ packages: chardet@2.1.1: resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==} + check-error@2.1.3: + resolution: {integrity: sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==} + engines: {node: '>= 16'} + chokidar@3.5.3: resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 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'} @@ -8297,6 +7804,9 @@ packages: chromatism@3.0.0: resolution: {integrity: sha512-slVGC45odKFB6KzD/hpXP8XgS/Y+x72X1ckAhxU/9YZecCy8VwCJUSZsn0O4gQUwaTogun6IfrSiK3YuQaADFw==} + chunkd@2.0.1: + resolution: {integrity: sha512-7d58XsFmOq0j6el67Ug9mHf9ELUXsQXYJBkyxhH/k+6Ke0qXRnv0kbemx+Twc6fRJ07C49lcbdgm9FL1Ei/6SQ==} + ci-info@3.9.0: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} @@ -8305,6 +7815,13 @@ packages: resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} engines: {node: '>=8'} + ci-info@4.4.0: + resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} + engines: {node: '>=8'} + + ci-parallel-vars@1.0.1: + resolution: {integrity: sha512-uvzpYrpmidaoxvIQHM+rKSrigjOe9feHYbw4uOI2gdfe1C3xIlxO+kVXq83WQWNniTf8bAxVpy+cQeFQsMERKg==} + clean-stack@2.2.0: resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} engines: {node: '>=6'} @@ -8352,35 +7869,24 @@ 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==} + code-excerpt@4.0.0: + resolution: {integrity: sha512-xxodCmBen3iy2i0WtAK8FlFNrRzjUqjRsMfho58xT/wvZU1YTM3fCnRjcy1gJPMepaRlgm/0e6w8SpWHpn3/cA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 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'} @@ -8403,13 +7909,12 @@ packages: commander@2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} - commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} - common-ancestor-path@1.0.1: resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + common-path-prefix@3.0.0: + resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + commondir@1.0.1: resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} @@ -8426,6 +7931,10 @@ packages: concaveman@1.2.1: resolution: {integrity: sha512-PwZYKaM/ckQSa8peP5JpVr7IMJ4Nn/MHIaWUjP4be+KoZ7Botgs8seAZGpmaOM+UZXawcdYRao/px9ycrCihHw==} + concordance@5.0.4: + resolution: {integrity: sha512-OAcsnTEYu1ARJqWVGwf4zh4JDfHZEaSNlNccFmt8YjB2l/n19/PF2viLINHc57vO4FKIAFl2FWASIGZZWZ2Kxw==} + engines: {node: '>=10.18.0 <11 || >=12.14.0 <13 || >=14'} + consola@3.4.2: resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} engines: {node: ^14.18.0 || >=16.10.0} @@ -8467,6 +7976,10 @@ packages: convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + convert-to-spaces@2.0.1: + resolution: {integrity: sha512-rcQ1bsQO9799wq24uE5AM2tAILy4gXGIK/njFWcVQkGNZ96edlpY+A7bjwvzjYvLDyzmG1MmMLZhpcsb+klNMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + core-js-compat@3.42.0: resolution: {integrity: sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==} @@ -8491,6 +8004,10 @@ packages: engines: {node: '>=4'} hasBin: true + currently-unhandled@0.4.1: + resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} + engines: {node: '>=0.10.0'} + d3-array@2.12.1: resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==} @@ -8519,6 +8036,10 @@ packages: resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} engines: {node: '>= 0.4'} + date-time@3.1.0: + resolution: {integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==} + engines: {node: '>=6'} + dateformat@3.0.3: resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} @@ -8575,6 +8096,10 @@ packages: babel-plugin-macros: optional: true + deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} + deep-equal@2.2.3: resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} engines: {node: '>= 0.4'} @@ -8628,6 +8153,10 @@ packages: resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==} engines: {node: '>=12.20'} + detect-libc@2.1.2: + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} + engines: {node: '>=8'} + detective-amd@6.0.1: resolution: {integrity: sha512-TtyZ3OhwUoEEIhTFoc1C9IyJIud3y+xYkSRjmvCt65+ycQuc3VcBrPRTMWoO/AnuCyOB8T5gky+xf7Igxtjd3g==} engines: {node: '>=18'} @@ -8718,6 +8247,10 @@ packages: electron-to-chromium@1.5.145: resolution: {integrity: sha512-pZ5EcTWRq/055MvSBgoFEyKf2i4apwfoqJbK/ak2jnFq8oHjZ+vzc3AhRcz37Xn+ZJfL58R666FLJx0YOK9yTw==} + emittery@1.2.1: + resolution: {integrity: sha512-sFz64DCRjirhwHLxofFqxYQm6DCp6o0Ix7jwKQvuCHPn4GMRZNuBZyLPu9Ccmk/QSCAMZt6FOUqA8JZCQvA9fw==} + engines: {node: '>=14.16'} + emoji-regex@10.4.0: resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} @@ -8727,9 +8260,6 @@ 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==} @@ -8771,11 +8301,6 @@ packages: resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==} engines: {node: '>= 0.4'} - es-check@9.0.0: - resolution: {integrity: sha512-lxqD7bpt/LwXUlKkCldWXhy7mgWoWUO3eMihCKqh4BR2BnUtSNlndzaWUmKNEo2LhwEhXnFzwXgGqoaWnuDPYg==} - engines: {node: '>= 4'} - hasBin: true - es-define-property@1.0.0: resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} engines: {node: '>= 0.4'} @@ -8791,6 +8316,9 @@ packages: es-get-iterator@1.1.3: resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} + es-object-atoms@1.0.0: resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} engines: {node: '>= 0.4'} @@ -8811,6 +8339,11 @@ packages: resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} engines: {node: '>= 0.4'} + esbuild@0.21.5: + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} + engines: {node: '>=12'} + hasBin: true + esbuild@0.25.3: resolution: {integrity: sha512-qKA6Pvai73+M2FtftpNKRxJ78GIjmFXFxd/1DVBqGo/qNhLSfv+G12n9pNoWdytJC8U00TrViOwpjT0zgqQS8Q==} engines: {node: '>=18'} @@ -8824,6 +8357,10 @@ packages: resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} + escape-string-regexp@2.0.0: + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} + escape-string-regexp@4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} @@ -8915,6 +8452,9 @@ packages: estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} @@ -8933,6 +8473,10 @@ packages: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} engines: {node: '>=16.17'} + expect-type@1.3.0: + resolution: {integrity: sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==} + engines: {node: '>=12.0.0'} + exponential-backoff@3.1.1: resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} @@ -8966,17 +8510,21 @@ packages: 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'} + figures@6.1.0: + resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==} + engines: {node: '>=18'} + file-entry-cache@8.0.0: resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} engines: {node: '>=16.0.0'} + file-uri-to-path@1.0.0: + resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + filelist@1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} @@ -8993,6 +8541,10 @@ packages: resolution: {integrity: sha512-JmO9lEBUEYOiRw/bdbdgFWpGFgBZBGLcK/5GjQKo3ZN+zR6jmQOh9gWyZoqxlQmnldZ9WBWhna0QYyuq6BxvRg==} engines: {node: '>=14.6'} + find-up-simple@1.0.1: + resolution: {integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==} + engines: {node: '>=18'} + find-up@2.1.0: resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} engines: {node: '>=4'} @@ -9024,9 +8576,6 @@ packages: flatted@3.3.2: resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} - fn.name@1.1.0: - resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} - follow-redirects@1.15.6: resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} engines: {node: '>=4.0'} @@ -9366,6 +8915,10 @@ packages: resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} engines: {node: '>= 14'} + 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'} @@ -9390,6 +8943,10 @@ packages: ieee754@1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + ignore-by-default@2.1.0: + resolution: {integrity: sha512-yiWd4GVmJp0Q6ghmM2B/V3oZGRmjrKLXvHR3TE1nfoXsmoggllfZUQe74EN0fJdPFZu2NIvNdrMMLm3OsV7Ohw==} + engines: {node: '>=10 <11 || >=12 <13 || >=14'} + ignore-walk@8.0.0: resolution: {integrity: sha512-FCeMZT4NiRQGh+YkeKMtWrOmBgWjHjMJ26WQWrRQyoyzqevdaGSakUaJW5xQYmjLlUVk2qUnCjYVBax9EKKg8A==} engines: {node: ^20.17.0 || >=22.9.0} @@ -9419,6 +8976,10 @@ packages: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} + indent-string@5.0.0: + resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} + engines: {node: '>=12'} + inflight@1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. @@ -9464,6 +9025,10 @@ packages: ip@2.0.1: resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} + irregular-plurals@3.5.0: + resolution: {integrity: sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==} + engines: {node: '>=8'} + is-absolute@1.0.0: resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==} engines: {node: '>=0.10.0'} @@ -9479,9 +9044,6 @@ packages: 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==} engines: {node: '>= 0.4'} @@ -9601,6 +9163,13 @@ packages: resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} engines: {node: '>=12'} + is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + + is-promise@4.0.0: + resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} + is-reference@1.2.1: resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} @@ -9666,6 +9235,10 @@ packages: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} engines: {node: '>=10'} + is-unicode-supported@2.1.0: + resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} + engines: {node: '>=18'} + is-url-superb@4.0.0: resolution: {integrity: sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA==} engines: {node: '>=10'} @@ -9721,9 +9294,9 @@ packages: resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==} engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} - joycon@3.1.1: - resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} - engines: {node: '>=10'} + js-string-escape@1.0.1: + resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} + engines: {node: '>= 0.8'} js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} @@ -9818,9 +9391,6 @@ 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==} engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} @@ -9870,10 +9440,6 @@ packages: resolution: {integrity: sha512-Gnxj3ev3mB5TkVBGad0JM6dmLiQL+o0t23JPBZ9sd+yvSLk05mFoqKBw5N8gbbkU4TNXyqCgIrl/VM17OgUIgQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - load-tsconfig@0.2.5: - resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - locate-path@2.0.0: resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} engines: {node: '>=4'} @@ -9899,9 +9465,6 @@ packages: 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==} @@ -9913,13 +9476,12 @@ 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==} + loupe@3.2.1: + resolution: {integrity: sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==} + lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} @@ -9975,10 +9537,18 @@ packages: markdown-table@3.0.3: resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} + matcher@5.0.0: + resolution: {integrity: sha512-s2EMBOWtXFc8dgqvoAzKJXxNHibcdJMV0gwqKUaw9E2JBJuGUK7DrNKrA6g/i+v72TT16+6sVm5mS3thaMLQUw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + math-intrinsics@1.1.0: resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} engines: {node: '>= 0.4'} + md5-hex@3.0.1: + resolution: {integrity: sha512-BUiRtTtV39LIJwinWBjqVsU9xhdnz7/i889V859IBFpuqGAj6LuOvHv5XLbgZ2R7ptJoJaEcxkv88/h25T7Ciw==} + engines: {node: '>=8'} + mdast-util-definitions@5.1.2: resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} @@ -10027,6 +9597,10 @@ packages: mdast-util-toc@6.1.1: resolution: {integrity: sha512-Er21728Kow8hehecK2GZtb7Ny3omcoPUVrmObiSUwmoRYVZaXLR751QROEFjR8W/vAQdHMLj49Lz20J55XaNpw==} + memoize@10.2.0: + resolution: {integrity: sha512-DeC6b7QBrZsRs3Y02A6A7lQyzFbsQbqgjI6UW0GigGWV+u1s25TycMr0XHZE4cJce7rY/vyw2ctMQqfDkIhUEA==} + engines: {node: '>=18'} + meow@13.2.0: resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==} engines: {node: '>=18'} @@ -10277,9 +9851,6 @@ packages: resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==} engines: {node: ^18.17.0 || >=20.5.0} - mz@2.7.0: - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} - nanoid@3.3.11: resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} @@ -10300,6 +9871,19 @@ packages: neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-gyp-build@4.8.4: + resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==} + hasBin: true + node-gyp@11.5.0: resolution: {integrity: sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ==} engines: {node: ^18.17.0 || >=20.5.0} @@ -10315,6 +9899,10 @@ packages: resolution: {integrity: sha512-3VW/8JpPqPvnJvseXowjZcirPisssnBuDikk6JIZ8jQzF7KJQX52iPFX4RYYxLycYH7IbMRSPUOga/esVjy5Yg==} engines: {node: '>=18'} + nofilter@3.1.0: + resolution: {integrity: sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==} + engines: {node: '>=12.19'} + nopt@8.1.0: resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==} engines: {node: ^18.17.0 || >=20.5.0} @@ -10399,10 +9987,6 @@ packages: '@swc/core': optional: true - object-assign@4.1.1: - 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==} engines: {node: '>= 0.4'} @@ -10422,9 +10006,6 @@ packages: 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'} @@ -10533,6 +10114,10 @@ packages: resolution: {integrity: sha512-RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw==} engines: {node: '>=8'} + package-config@5.0.0: + resolution: {integrity: sha512-GYTTew2slBcYdvRHqjhwaaydVMvn/qrGC323+nKclYioNSLTDUM/lGgtGTgyHVtYcozb+XkE8CNhwcraOmZ9Mg==} + engines: {node: '>=18'} + package-json-from-dist@1.0.1: resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} @@ -10566,6 +10151,10 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} + parse-ms@4.0.0: + resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} + engines: {node: '>=18'} + parse-path@7.0.0: resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} @@ -10626,6 +10215,13 @@ packages: resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==} engines: {node: '>=18'} + pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + + pathval@2.0.1: + resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} + engines: {node: '>= 14.16'} + picocolors@1.1.1: resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} @@ -10662,10 +10258,6 @@ packages: resolution: {integrity: sha512-KocF8ve28eFjjuBKKGvzOBGzG8ew2OqOOSxTTZhirkzH7h3BI1vyzqlR0qbfcDBve1Yzo3FVlWUAtCRrbVN8Fw==} engines: {node: '>=14.16'} - pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} - pkg-dir@4.2.0: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} @@ -10673,6 +10265,10 @@ packages: platform@1.3.6: resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==} + plur@5.1.0: + resolution: {integrity: sha512-VP/72JeXqak2KiOzjgKtQen5y3IZHn+9GOuLDafPv0eXa47xq0At93XahYBs26MsifCQ4enGKwbjBTKgb9QJXg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + point-in-polygon-hao@1.1.0: resolution: {integrity: sha512-3hTIM2j/v9Lio+wOyur3kckD4NxruZhpowUbEgmyikW+a2Kppjtu1eN+AhnMQtoHW46zld88JiYWv6fxpsDrTQ==} @@ -10686,24 +10282,6 @@ packages: resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} engines: {node: '>= 0.4'} - postcss-load-config@6.0.1: - resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==} - engines: {node: '>= 18'} - peerDependencies: - jiti: '>=1.21.0' - postcss: '>=8.0.9' - tsx: ^4.8.1 - yaml: ^2.4.2 - peerDependenciesMeta: - jiti: - optional: true - postcss: - optional: true - tsx: - optional: true - yaml: - optional: true - postcss-selector-parser@7.1.1: resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==} engines: {node: '>=4'} @@ -10744,6 +10322,10 @@ packages: 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} + pretty-ms@9.3.0: + resolution: {integrity: sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==} + engines: {node: '>=18'} + proc-log@5.0.0: resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==} engines: {node: ^18.17.0 || >=20.5.0} @@ -10876,10 +10458,6 @@ packages: resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} engines: {node: '>=8.10.0'} - readdirp@4.1.2: - resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} - engines: {node: '>= 14.18.0'} - redent@3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} @@ -11055,10 +10633,6 @@ packages: resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} engines: {node: '>= 0.4'} - safe-stable-stringify@2.5.0: - resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} - engines: {node: '>=10'} - safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} @@ -11090,6 +10664,10 @@ packages: engines: {node: '>=10'} hasBin: true + serialize-error@7.0.1: + resolution: {integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==} + engines: {node: '>=10'} + serialize-javascript@6.0.2: resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} @@ -11116,6 +10694,9 @@ packages: resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} engines: {node: '>= 0.4'} + siginfo@2.0.0: + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} @@ -11127,9 +10708,6 @@ packages: resolution: {integrity: sha512-Gw/FgHtrLM9WP8P5lLcSGh9OQcrTruWCELAiS48ik1QbL0cH+dfjomiRTUE9zzz+D1N6rOLkwXUvVmXZAsNE0Q==} 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==} @@ -11187,11 +10765,6 @@ 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 - space-separated-tokens@2.0.2: resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} @@ -11227,8 +10800,15 @@ packages: resolution: {integrity: sha512-yizwGBpbCn4YomB2lzhZqrHLJoqFGXihNbib3ozhqF/cIp5ue+xSmOQrjNasEE62hFxsCcg/V/z23t4n8jMEng==} engines: {node: ^20.17.0 || >=22.9.0} - stack-trace@0.0.10: - resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} + stack-utils@2.0.6: + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} + + stackback@0.0.2: + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + + std-env@3.10.0: + resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==} stop-iteration-iterator@1.0.0: resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} @@ -11318,19 +10898,14 @@ packages: engines: {node: '>=18'} hasBin: true - sucrase@3.35.0: - resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} - engines: {node: '>=16 || 14 >=14.17'} - hasBin: true + supertap@3.0.1: + resolution: {integrity: sha512-u1ZpIBCawJnO+0QePsEiOknOfCRq0yERxiAchT0i4li0WHNUJbf0evXXSXOcCAR4M8iMDoajXYmstm/qO81Isw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} supports-color@7.2.0: 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'} @@ -11339,8 +10914,8 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - sweepline-intersections@1.5.0: - resolution: {integrity: sha512-AoVmx72QHpKtItPu72TzFL+kcYjd67BPLDoR0LarIk+xyaRg+pDTMFXndIEvZf9xEKnJv6JdhgRMnocoG0D3AQ==} + sweepline-intersections@2.0.1: + resolution: {integrity: sha512-zO/NI2dIRyfgSRofPcBFW8OeMcg2ITyUSWC2NjZBL/XrvFXHPzt6fY9O0aNoZ118/frEpcGb3zF9asUD7pLFbg==} synckit@0.11.11: resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==} @@ -11370,6 +10945,10 @@ packages: resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} engines: {node: '>=4'} + temp-dir@3.0.0: + resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==} + engines: {node: '>=14.16'} + terser@5.26.0: resolution: {integrity: sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==} engines: {node: '>=10'} @@ -11379,22 +10958,19 @@ 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'} - - thenify@3.3.1: - resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} - through2@2.0.5: resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} through@2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + time-zone@1.0.0: + resolution: {integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==} + engines: {node: '>=4'} + + tinybench@2.9.0: + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + tinyexec@0.3.2: resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} @@ -11406,10 +10982,22 @@ packages: resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==} engines: {node: '>=12.0.0'} + tinypool@1.1.1: + resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} + engines: {node: ^18.0.0 || >=20.0.0} + tinyqueue@2.0.3: resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==} - tmp@0.2.5: + tinyrainbow@1.2.0: + resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==} + engines: {node: '>=14.0.0'} + + tinyspy@3.0.2: + resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} + engines: {node: '>=14.0.0'} + + tmp@0.2.5: resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==} engines: {node: '>=14.14'} @@ -11425,8 +11013,8 @@ packages: resolution: {integrity: sha512-/VS9j/ffKr2XAOjlZ9CgyyeLmgJ9dMwq6Y0YEON8O7p/tGGk+dCWnrE03zEdu7i4L7YsFZLEPZPzCvcB7lEEXw==} hasBin: true - tr46@1.0.1: - resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} tree-kill@1.2.2: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} @@ -11443,10 +11031,6 @@ 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==} @@ -11456,9 +11040,6 @@ packages: peerDependencies: typescript: '>=4.8.4' - ts-interface-checker@0.1.13: - resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - tsconfig-paths@4.2.0: resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} engines: {node: '>=6'} @@ -11476,25 +11057,6 @@ packages: typescript: optional: true - tsup@8.4.0: - resolution: {integrity: sha512-b+eZbPCjz10fRryaAA7C8xlIHnf8VnsaRqydheLIqwG/Mcpfk8Z5zp3HayX7GaTygkigHl5cBUs+IhcySiIexQ==} - engines: {node: '>=18'} - hasBin: true - peerDependencies: - '@microsoft/api-extractor': ^7.36.0 - '@swc/core': ^1 - postcss: ^8.4.12 - typescript: '>=4.5.0' - peerDependenciesMeta: - '@microsoft/api-extractor': - optional: true - '@swc/core': - optional: true - postcss: - optional: true - typescript: - optional: true - tsx@4.19.4: resolution: {integrity: sha512-gK5GVzDkJK1SI1zwHf32Mqxf2tSJkNx+eYcNly5+nHvWqXUJYUkWBQtKauoESz3ymezAI++ZwT855x5p5eop+Q==} engines: {node: '>=18.0.0'} @@ -11508,6 +11070,10 @@ packages: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} engines: {node: '>= 0.8.0'} + type-fest@0.13.1: + resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} + engines: {node: '>=10'} + type-fest@0.18.1: resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} engines: {node: '>=10'} @@ -11698,6 +11264,67 @@ packages: vfile@5.3.7: resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} + vite-node@2.1.9: + resolution: {integrity: sha512-AM9aQ/IPrW/6ENLQg3AGY4K1N2TGZdR5e4gu/MmmR2xR3Ll1+dib+nook92g4TV3PXVyeyxdWwtaCAiUL0hMxA==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + + vite@5.4.21: + resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + + vitest@2.1.9: + resolution: {integrity: sha512-MSmPM9REYqDGBI8439mA4mWhV5sKmDlBKWIYbA3lRb2PTHACE0mgKwA8yQ2xq9vxDTuk4iPrECBAEW2aoFXY0Q==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/node': ^18.0.0 || >=20.0.0 + '@vitest/browser': 2.1.9 + '@vitest/ui': 2.1.9 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + vue-template-compiler@2.7.16: resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==} @@ -11711,11 +11338,15 @@ 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==} + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + well-known-symbols@2.0.0: + resolution: {integrity: sha512-ZMjC3ho+KXo0BfJb7JgtQ5IBuvnShdlACNkKkdsqBmYw3bPAaJfPeYUo6tLUaT5tG/Gkh7xkpBhKRQ9e7pyg9Q==} + engines: {node: '>=6'} - whatwg-url@7.1.0: - resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} which-boxed-primitive@1.1.0: resolution: {integrity: sha512-Ei7Miu/AXe2JJ4iNF5j/UphAgRoma4trE6PtisM09bPygb3egMH3YLW/befsWb1A1AxvNSFidOFTB18XtnIIng==} @@ -11748,17 +11379,14 @@ packages: engines: {node: ^20.17.0 || >=22.9.0} hasBin: true + why-is-node-running@2.3.0: + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} + engines: {node: '>=8'} + 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==} @@ -12579,14 +12207,6 @@ snapshots: '@babel/helper-string-parser': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@colors/colors@1.6.0': {} - - '@dabh/diagnostics@2.0.3': - dependencies: - colorspace: 1.1.4 - enabled: 2.0.0 - kuler: 2.0.0 - '@dependents/detective-less@5.0.1': dependencies: gonzales-pe: 4.3.0 @@ -12605,78 +12225,147 @@ snapshots: dependencies: tslib: 2.8.1 + '@esbuild/aix-ppc64@0.21.5': + optional: true + '@esbuild/aix-ppc64@0.25.3': optional: true + '@esbuild/android-arm64@0.21.5': + optional: true + '@esbuild/android-arm64@0.25.3': optional: true + '@esbuild/android-arm@0.21.5': + optional: true + '@esbuild/android-arm@0.25.3': optional: true + '@esbuild/android-x64@0.21.5': + optional: true + '@esbuild/android-x64@0.25.3': optional: true + '@esbuild/darwin-arm64@0.21.5': + optional: true + '@esbuild/darwin-arm64@0.25.3': optional: true + '@esbuild/darwin-x64@0.21.5': + optional: true + '@esbuild/darwin-x64@0.25.3': optional: true + '@esbuild/freebsd-arm64@0.21.5': + optional: true + '@esbuild/freebsd-arm64@0.25.3': optional: true + '@esbuild/freebsd-x64@0.21.5': + optional: true + '@esbuild/freebsd-x64@0.25.3': optional: true + '@esbuild/linux-arm64@0.21.5': + optional: true + '@esbuild/linux-arm64@0.25.3': optional: true + '@esbuild/linux-arm@0.21.5': + optional: true + '@esbuild/linux-arm@0.25.3': optional: true + '@esbuild/linux-ia32@0.21.5': + optional: true + '@esbuild/linux-ia32@0.25.3': optional: true + '@esbuild/linux-loong64@0.21.5': + optional: true + '@esbuild/linux-loong64@0.25.3': optional: true + '@esbuild/linux-mips64el@0.21.5': + optional: true + '@esbuild/linux-mips64el@0.25.3': optional: true + '@esbuild/linux-ppc64@0.21.5': + optional: true + '@esbuild/linux-ppc64@0.25.3': optional: true + '@esbuild/linux-riscv64@0.21.5': + optional: true + '@esbuild/linux-riscv64@0.25.3': optional: true + '@esbuild/linux-s390x@0.21.5': + optional: true + '@esbuild/linux-s390x@0.25.3': optional: true + '@esbuild/linux-x64@0.21.5': + optional: true + '@esbuild/linux-x64@0.25.3': optional: true '@esbuild/netbsd-arm64@0.25.3': optional: true + '@esbuild/netbsd-x64@0.21.5': + optional: true + '@esbuild/netbsd-x64@0.25.3': optional: true '@esbuild/openbsd-arm64@0.25.3': optional: true + '@esbuild/openbsd-x64@0.21.5': + optional: true + '@esbuild/openbsd-x64@0.25.3': optional: true + '@esbuild/sunos-x64@0.21.5': + optional: true + '@esbuild/sunos-x64@0.25.3': optional: true + '@esbuild/win32-arm64@0.21.5': + optional: true + '@esbuild/win32-arm64@0.25.3': optional: true + '@esbuild/win32-ia32@0.21.5': + optional: true + '@esbuild/win32-ia32@0.25.3': optional: true + '@esbuild/win32-x64@0.21.5': + optional: true + '@esbuild/win32-x64@0.25.3': optional: true @@ -13019,6 +12708,19 @@ snapshots: dependencies: call-bind: 1.0.8 + '@mapbox/node-pre-gyp@2.0.3(encoding@0.1.13)': + dependencies: + consola: 3.4.2 + detect-libc: 2.1.2 + https-proxy-agent: 7.0.6 + node-fetch: 2.7.0(encoding@0.1.13) + nopt: 8.1.0 + semver: 7.7.2 + tar: 7.5.2 + transitivePeerDependencies: + - encoding + - supports-color + '@monorepolint/cli@0.6.0-alpha.5': dependencies: '@monorepolint/config': 0.6.0-alpha.6 @@ -13648,8 +13350,6 @@ snapshots: dependencies: '@types/geojson': 7946.0.14 - '@types/triple-beam@1.3.5': {} - '@types/unist@2.0.10': {} '@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)': @@ -13766,6 +13466,65 @@ snapshots: '@typescript-eslint/types': 8.38.0 eslint-visitor-keys: 4.2.1 + '@vercel/nft@0.29.4(encoding@0.1.13)(rollup@4.40.1)': + dependencies: + '@mapbox/node-pre-gyp': 2.0.3(encoding@0.1.13) + '@rollup/pluginutils': 5.1.4(rollup@4.40.1) + acorn: 8.15.0 + acorn-import-attributes: 1.9.5(acorn@8.15.0) + async-sema: 3.1.1 + bindings: 1.5.0 + estree-walker: 2.0.2 + glob: 10.5.0 + graceful-fs: 4.2.11 + node-gyp-build: 4.8.4 + picomatch: 4.0.2 + resolve-from: 5.0.0 + transitivePeerDependencies: + - encoding + - rollup + - supports-color + + '@vitest/expect@2.1.9': + dependencies: + '@vitest/spy': 2.1.9 + '@vitest/utils': 2.1.9 + chai: 5.3.3 + tinyrainbow: 1.2.0 + + '@vitest/mocker@2.1.9(vite@5.4.21(@types/node@22.15.3)(terser@5.26.0))': + dependencies: + '@vitest/spy': 2.1.9 + estree-walker: 3.0.3 + magic-string: 0.30.17 + optionalDependencies: + vite: 5.4.21(@types/node@22.15.3)(terser@5.26.0) + + '@vitest/pretty-format@2.1.9': + dependencies: + tinyrainbow: 1.2.0 + + '@vitest/runner@2.1.9': + dependencies: + '@vitest/utils': 2.1.9 + pathe: 1.1.2 + + '@vitest/snapshot@2.1.9': + dependencies: + '@vitest/pretty-format': 2.1.9 + magic-string: 0.30.17 + pathe: 1.1.2 + + '@vitest/spy@2.1.9': + dependencies: + tinyspy: 3.0.2 + + '@vitest/utils@2.1.9': + dependencies: + '@vitest/pretty-format': 2.1.9 + loupe: 3.2.1 + tinyrainbow: 1.2.0 + '@vue/compiler-core@3.5.13': dependencies: '@babel/parser': 7.26.2 @@ -13816,6 +13575,10 @@ snapshots: abbrev@3.0.1: {} + acorn-import-attributes@1.9.5(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + acorn-jsx@5.3.2(acorn@8.15.0): dependencies: acorn: 8.15.0 @@ -13824,8 +13587,6 @@ snapshots: dependencies: acorn: 8.15.0 - acorn@8.14.1: {} - acorn@8.15.0: {} add-stream@1.0.0: {} @@ -13836,6 +13597,8 @@ snapshots: transitivePeerDependencies: - supports-color + agent-base@7.1.4: {} + aggregate-error@3.1.0: dependencies: clean-stack: 2.2.0 @@ -13866,8 +13629,6 @@ snapshots: ansi-styles@6.2.1: {} - any-promise@1.3.0: {} - anymatch@3.1.3: dependencies: normalize-path: 3.0.0 @@ -13892,6 +13653,8 @@ snapshots: array-differ@3.0.0: {} + array-find-index@1.0.2: {} + array-ify@1.0.0: {} array-union@2.1.0: {} @@ -13915,16 +13678,71 @@ snapshots: is-array-buffer: 3.0.4 is-shared-array-buffer: 1.0.3 + arrgv@1.0.2: {} + arrify@1.0.1: {} arrify@2.0.1: {} + arrify@3.0.0: {} + + assertion-error@2.0.1: {} + ast-module-types@6.0.1: {} + async-sema@3.1.1: {} + async@3.2.6: {} asynckit@0.4.0: {} + ava@6.4.1(encoding@0.1.13)(rollup@4.40.1): + dependencies: + '@vercel/nft': 0.29.4(encoding@0.1.13)(rollup@4.40.1) + acorn: 8.15.0 + acorn-walk: 8.3.4 + ansi-styles: 6.2.1 + arrgv: 1.0.2 + arrify: 3.0.0 + callsites: 4.2.0 + cbor: 10.0.12 + chalk: 5.6.2 + chunkd: 2.0.1 + ci-info: 4.4.0 + ci-parallel-vars: 1.0.1 + cli-truncate: 4.0.0 + code-excerpt: 4.0.0 + common-path-prefix: 3.0.0 + concordance: 5.0.4 + currently-unhandled: 0.4.1 + debug: 4.4.3 + emittery: 1.2.1 + figures: 6.1.0 + globby: 14.1.0 + ignore-by-default: 2.1.0 + indent-string: 5.0.0 + is-plain-object: 5.0.0 + is-promise: 4.0.0 + matcher: 5.0.0 + memoize: 10.2.0 + ms: 2.1.3 + p-map: 7.0.4 + package-config: 5.0.0 + picomatch: 4.0.2 + plur: 5.1.0 + pretty-ms: 9.3.0 + resolve-cwd: 3.0.0 + stack-utils: 2.0.6 + strip-ansi: 7.1.0 + supertap: 3.0.1 + temp-dir: 3.0.0 + write-file-atomic: 6.0.0 + yargs: 17.7.2 + transitivePeerDependencies: + - encoding + - rollup + - supports-color + available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.0.0 @@ -13986,12 +13804,18 @@ snapshots: binary-extensions@2.2.0: {} + bindings@1.5.0: + dependencies: + file-uri-to-path: 1.0.0 + bl@4.1.0: dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 + blueimp-md5@2.19.0: {} + boolean-jsts@0.0.1: dependencies: jsts: 1.6.2 @@ -14027,11 +13851,6 @@ snapshots: base64-js: 1.5.1 ieee754: 1.2.1 - bundle-require@5.1.0(esbuild@0.25.3): - dependencies: - esbuild: 0.25.3 - load-tsconfig: 0.2.5 - byte-size@8.1.1: {} cac@6.7.14: {} @@ -14087,6 +13906,8 @@ snapshots: callsites@3.1.0: {} + callsites@4.2.0: {} + camelcase-keys@6.2.2: dependencies: camelcase: 5.3.1 @@ -14099,8 +13920,20 @@ snapshots: caniuse-lite@1.0.30001716: {} + cbor@10.0.12: + dependencies: + nofilter: 3.1.0 + ccount@2.0.1: {} + chai@5.3.3: + dependencies: + assertion-error: 2.0.1 + check-error: 2.1.3 + deep-eql: 5.0.2 + loupe: 3.2.1 + pathval: 2.0.1 + chalk@4.1.0: dependencies: ansi-styles: 4.3.0 @@ -14125,6 +13958,8 @@ snapshots: chardet@2.1.1: {} + check-error@2.1.3: {} + chokidar@3.5.3: dependencies: anymatch: 3.1.3 @@ -14137,20 +13972,22 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - chokidar@4.0.3: - dependencies: - readdirp: 4.1.2 - chownr@2.0.0: {} chownr@3.0.0: {} chromatism@3.0.0: {} + chunkd@2.0.1: {} + ci-info@3.9.0: {} ci-info@4.0.0: {} + ci-info@4.4.0: {} + + ci-parallel-vars@1.0.1: {} + clean-stack@2.2.0: {} cli-cursor@3.1.0: @@ -14190,37 +14027,20 @@ snapshots: cmd-shim@7.0.0: {} - color-convert@1.9.3: + code-excerpt@4.0.0: dependencies: - color-name: 1.1.3 + convert-to-spaces: 2.0.1 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 @@ -14238,10 +14058,10 @@ snapshots: commander@2.20.3: {} - commander@4.1.1: {} - common-ancestor-path@1.0.1: {} + common-path-prefix@3.0.0: {} + commondir@1.0.1: {} compare-func@2.0.0: @@ -14265,6 +14085,17 @@ snapshots: robust-predicates: 2.0.4 tinyqueue: 2.0.3 + concordance@5.0.4: + dependencies: + date-time: 3.1.0 + esutils: 2.0.3 + fast-diff: 1.3.0 + js-string-escape: 1.0.1 + lodash: 4.17.21 + md5-hex: 3.0.1 + semver: 7.7.2 + well-known-symbols: 2.0.0 + consola@3.4.2: {} console-control-strings@1.1.0: {} @@ -14323,6 +14154,8 @@ snapshots: convert-source-map@2.0.0: {} + convert-to-spaces@2.0.1: {} + core-js-compat@3.42.0: dependencies: browserslist: 4.24.4 @@ -14346,6 +14179,10 @@ snapshots: cssesc@3.0.0: {} + currently-unhandled@0.4.1: + dependencies: + array-find-index: 1.0.2 + d3-array@2.12.1: dependencies: internmap: 1.0.1 @@ -14378,6 +14215,10 @@ snapshots: es-errors: 1.3.0 is-data-view: 1.0.1 + date-time@3.1.0: + dependencies: + time-zone: 1.0.0 + dateformat@3.0.3: {} de-indent@1.0.2: @@ -14410,6 +14251,8 @@ snapshots: dedent@1.5.3: {} + deep-eql@5.0.2: {} + deep-equal@2.2.3: dependencies: array-buffer-byte-length: 1.0.1 @@ -14474,6 +14317,8 @@ snapshots: detect-indent@7.0.1: {} + detect-libc@2.1.2: {} + detective-amd@6.0.1: dependencies: ast-module-types: 6.0.1 @@ -14611,14 +14456,14 @@ snapshots: electron-to-chromium@1.5.145: {} + emittery@1.2.1: {} + emoji-regex@10.4.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 @@ -14700,17 +14545,6 @@ snapshots: unbox-primitive: 1.0.2 which-typed-array: 1.1.16 - es-check@9.0.0: - dependencies: - acorn: 8.14.1 - acorn-walk: 8.3.4 - browserslist: 4.24.4 - commander: 13.1.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 @@ -14731,6 +14565,8 @@ snapshots: isarray: 2.0.5 stop-iteration-iterator: 1.0.0 + es-module-lexer@1.7.0: {} + es-object-atoms@1.0.0: dependencies: es-errors: 1.3.0 @@ -14758,6 +14594,32 @@ snapshots: is-date-object: 1.0.5 is-symbol: 1.1.0 + esbuild@0.21.5: + optionalDependencies: + '@esbuild/aix-ppc64': 0.21.5 + '@esbuild/android-arm': 0.21.5 + '@esbuild/android-arm64': 0.21.5 + '@esbuild/android-x64': 0.21.5 + '@esbuild/darwin-arm64': 0.21.5 + '@esbuild/darwin-x64': 0.21.5 + '@esbuild/freebsd-arm64': 0.21.5 + '@esbuild/freebsd-x64': 0.21.5 + '@esbuild/linux-arm': 0.21.5 + '@esbuild/linux-arm64': 0.21.5 + '@esbuild/linux-ia32': 0.21.5 + '@esbuild/linux-loong64': 0.21.5 + '@esbuild/linux-mips64el': 0.21.5 + '@esbuild/linux-ppc64': 0.21.5 + '@esbuild/linux-riscv64': 0.21.5 + '@esbuild/linux-s390x': 0.21.5 + '@esbuild/linux-x64': 0.21.5 + '@esbuild/netbsd-x64': 0.21.5 + '@esbuild/openbsd-x64': 0.21.5 + '@esbuild/sunos-x64': 0.21.5 + '@esbuild/win32-arm64': 0.21.5 + '@esbuild/win32-ia32': 0.21.5 + '@esbuild/win32-x64': 0.21.5 + esbuild@0.25.3: optionalDependencies: '@esbuild/aix-ppc64': 0.25.3 @@ -14790,6 +14652,8 @@ snapshots: escape-string-regexp@1.0.5: {} + escape-string-regexp@2.0.0: {} + escape-string-regexp@4.0.0: {} escape-string-regexp@5.0.0: {} @@ -14894,6 +14758,10 @@ snapshots: estree-walker@2.0.2: {} + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.7 + esutils@2.0.3: {} eventemitter3@4.0.7: {} @@ -14924,6 +14792,8 @@ snapshots: signal-exit: 4.1.0 strip-final-newline: 3.0.0 + expect-type@1.3.0: {} + exponential-backoff@3.1.1: {} extend@3.0.2: {} @@ -14952,16 +14822,20 @@ snapshots: optionalDependencies: picomatch: 4.0.2 - fecha@4.2.3: {} - figures@3.2.0: dependencies: escape-string-regexp: 1.0.5 + figures@6.1.0: + dependencies: + is-unicode-supported: 2.1.0 + file-entry-cache@8.0.0: dependencies: flat-cache: 4.0.1 + file-uri-to-path@1.0.0: {} + filelist@1.0.4: dependencies: minimatch: 5.1.6 @@ -14992,6 +14866,8 @@ snapshots: fast-glob: 3.3.3 p-filter: 2.1.0 + find-up-simple@1.0.1: {} + find-up@2.1.0: dependencies: locate-path: 2.0.0 @@ -15026,8 +14902,6 @@ snapshots: flatted@3.3.2: {} - fn.name@1.1.0: {} - follow-redirects@1.15.6: {} for-each@0.3.3: @@ -15428,6 +15302,13 @@ snapshots: transitivePeerDependencies: - supports-color + https-proxy-agent@7.0.6: + dependencies: + agent-base: 7.1.4 + debug: 4.4.3 + transitivePeerDependencies: + - supports-color + human-signals@2.1.0: {} human-signals@5.0.0: {} @@ -15445,6 +15326,8 @@ snapshots: ieee754@1.2.1: {} + ignore-by-default@2.1.0: {} + ignore-walk@8.0.0: dependencies: minimatch: 10.1.1 @@ -15467,6 +15350,8 @@ snapshots: indent-string@4.0.0: {} + indent-string@5.0.0: {} + inflight@1.0.6: dependencies: once: 1.4.0 @@ -15514,6 +15399,8 @@ snapshots: ip@2.0.1: {} + irregular-plurals@3.5.0: {} + is-absolute@1.0.0: dependencies: is-relative: 1.0.0 @@ -15531,8 +15418,6 @@ snapshots: is-arrayish@0.2.1: {} - is-arrayish@0.3.2: {} - is-async-function@2.0.0: dependencies: has-tostringtag: 1.0.2 @@ -15623,6 +15508,10 @@ snapshots: is-plain-obj@4.1.0: {} + is-plain-object@5.0.0: {} + + is-promise@4.0.0: {} + is-reference@1.2.1: dependencies: '@types/estree': 1.0.7 @@ -15681,6 +15570,8 @@ snapshots: is-unicode-supported@0.1.0: {} + is-unicode-supported@2.1.0: {} + is-url-superb@4.0.0: {} is-url@1.2.4: {} @@ -15734,7 +15625,7 @@ snapshots: chalk: 4.1.2 pretty-format: 30.2.0 - joycon@3.1.1: {} + js-string-escape@1.0.1: {} js-tokens@4.0.0: {} @@ -15804,8 +15695,6 @@ snapshots: transitivePeerDependencies: - supports-color - kuler@2.0.0: {} - lerna@9.0.3(@types/node@22.15.3): dependencies: '@lerna/create': 9.0.3(@types/node@22.15.3)(typescript@5.8.3) @@ -15964,8 +15853,6 @@ snapshots: load-json-file@7.0.1: {} - load-tsconfig@0.2.5: {} - locate-path@2.0.0: dependencies: p-locate: 2.0.0 @@ -15989,8 +15876,6 @@ snapshots: lodash.merge@4.6.2: {} - lodash.sortby@4.7.0: {} - lodash@4.17.21: {} log-symbols@4.1.0: @@ -16006,17 +15891,10 @@ snapshots: 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 - longest-streak@3.1.0: {} + loupe@3.2.1: {} + lru-cache@10.4.3: {} lru-cache@11.1.0: {} @@ -16088,8 +15966,16 @@ snapshots: markdown-table@3.0.3: {} + matcher@5.0.0: + dependencies: + escape-string-regexp: 5.0.0 + math-intrinsics@1.1.0: {} + md5-hex@3.0.1: + dependencies: + blueimp-md5: 2.19.0 + mdast-util-definitions@5.1.2: dependencies: '@types/mdast': 3.0.15 @@ -16211,6 +16097,10 @@ snapshots: unist-util-is: 5.2.1 unist-util-visit: 4.1.2 + memoize@10.2.0: + dependencies: + mimic-function: 5.0.1 + meow@13.2.0: {} meow@8.1.2: @@ -16564,12 +16454,6 @@ snapshots: mute-stream@2.0.0: {} - mz@2.7.0: - dependencies: - any-promise: 1.3.0 - object-assign: 4.1.1 - thenify-all: 1.6.0 - nanoid@3.3.11: {} nanoid@3.3.8: {} @@ -16580,6 +16464,14 @@ snapshots: neo-async@2.6.2: {} + node-fetch@2.7.0(encoding@0.1.13): + dependencies: + whatwg-url: 5.0.0 + optionalDependencies: + encoding: 0.1.13 + + node-gyp-build@4.8.4: {} + node-gyp@11.5.0: dependencies: env-paths: 2.2.1 @@ -16603,6 +16495,8 @@ snapshots: dependencies: '@babel/parser': 7.27.0 + nofilter@3.1.0: {} + nopt@8.1.0: dependencies: abbrev: 3.0.1 @@ -16748,8 +16642,6 @@ snapshots: transitivePeerDependencies: - debug - object-assign@4.1.1: {} - object-inspect@1.13.3: {} object-is@1.1.6: @@ -16770,10 +16662,6 @@ snapshots: dependencies: wrappy: 1.0.2 - one-time@1.0.0: - dependencies: - fn.name: 1.1.0 - onetime@5.1.2: dependencies: mimic-fn: 2.1.0 @@ -16881,6 +16769,11 @@ snapshots: dependencies: p-reduce: 2.1.0 + package-config@5.0.0: + dependencies: + find-up-simple: 1.0.1 + load-json-file: 7.0.1 + package-json-from-dist@1.0.1: {} pacote@21.0.1: @@ -16955,6 +16848,8 @@ snapshots: json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 + parse-ms@4.0.0: {} + parse-path@7.0.0: dependencies: protocols: 2.0.1 @@ -17001,6 +16896,10 @@ snapshots: path-type@6.0.0: {} + pathe@1.1.2: {} + + pathval@2.0.1: {} + picocolors@1.1.1: {} picomatch@2.3.1: {} @@ -17019,14 +16918,16 @@ snapshots: pify@6.1.0: {} - pirates@4.0.6: {} - pkg-dir@4.2.0: dependencies: find-up: 4.1.0 platform@1.3.6: {} + plur@5.1.0: + dependencies: + irregular-plurals: 3.5.0 + point-in-polygon-hao@1.1.0: {} point-in-polygon@1.1.0: {} @@ -17038,14 +16939,6 @@ snapshots: possible-typed-array-names@1.0.0: {} - postcss-load-config@6.0.1(postcss@8.5.3)(tsx@4.19.4)(yaml@2.8.2): - dependencies: - lilconfig: 3.1.3 - optionalDependencies: - postcss: 8.5.3 - tsx: 4.19.4 - yaml: 2.8.2 - postcss-selector-parser@7.1.1: dependencies: cssesc: 3.0.0 @@ -17104,6 +16997,10 @@ snapshots: ansi-styles: 5.2.0 react-is: 18.3.1 + pretty-ms@9.3.0: + dependencies: + parse-ms: 4.0.0 + proc-log@5.0.0: {} proc-log@6.1.0: {} @@ -17236,8 +17133,6 @@ snapshots: dependencies: picomatch: 2.3.1 - readdirp@4.1.2: {} - redent@3.0.0: dependencies: indent-string: 4.0.0 @@ -17468,8 +17363,6 @@ snapshots: es-errors: 1.3.0 is-regex: 1.1.4 - safe-stable-stringify@2.5.0: {} - safer-buffer@2.1.2: {} sass-lookup@6.1.0: @@ -17487,6 +17380,10 @@ snapshots: semver@7.7.2: {} + serialize-error@7.0.1: + dependencies: + type-fest: 0.13.1 + serialize-javascript@6.0.2: dependencies: randombytes: 2.1.0 @@ -17522,6 +17419,8 @@ snapshots: get-intrinsic: 1.2.4 object-inspect: 1.13.3 + siginfo@2.0.0: {} + signal-exit@3.0.7: {} signal-exit@4.1.0: {} @@ -17537,10 +17436,6 @@ snapshots: transitivePeerDependencies: - supports-color - simple-swizzle@0.2.2: - dependencies: - is-arrayish: 0.3.2 - skmeans@0.9.7: {} slash@3.0.0: {} @@ -17595,10 +17490,6 @@ snapshots: source-map@0.6.1: {} - source-map@0.8.0-beta.0: - dependencies: - whatwg-url: 7.1.0 - space-separated-tokens@2.0.2: {} spdx-correct@3.2.0: @@ -17635,7 +17526,13 @@ snapshots: dependencies: minipass: 7.1.2 - stack-trace@0.0.10: {} + stack-utils@2.0.6: + dependencies: + escape-string-regexp: 2.0.0 + + stackback@0.0.2: {} + + std-env@3.10.0: {} stop-iteration-iterator@1.0.0: dependencies: @@ -17729,31 +17626,46 @@ snapshots: dependencies: commander: 12.1.0 - sucrase@3.35.0: + supertap@3.0.1: dependencies: - '@jridgewell/gen-mapping': 0.3.5 - commander: 4.1.1 - glob: 10.5.0 - lines-and-columns: 1.2.4 - mz: 2.7.0 - pirates: 4.0.6 - ts-interface-checker: 0.1.13 + indent-string: 5.0.0 + js-yaml: 3.14.2 + serialize-error: 7.0.1 + strip-ansi: 7.1.0 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: {} - sweepline-intersections@1.5.0: + sweepline-intersections@2.0.1(@types/node@22.15.3)(encoding@0.1.13)(rollup@4.40.1)(terser@5.26.0): dependencies: + '@rollup/plugin-commonjs': 28.0.3(rollup@4.40.1) + ava: 6.4.1(encoding@0.1.13)(rollup@4.40.1) tinyqueue: 2.0.3 + vitest: 2.1.9(@types/node@22.15.3)(terser@5.26.0) + transitivePeerDependencies: + - '@ava/typescript' + - '@edge-runtime/vm' + - '@types/node' + - '@vitest/browser' + - '@vitest/ui' + - encoding + - happy-dom + - jsdom + - less + - lightningcss + - msw + - rollup + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser synckit@0.11.11: dependencies: @@ -17813,6 +17725,8 @@ snapshots: temp-dir@1.0.0: {} + temp-dir@3.0.0: {} + terser@5.26.0: dependencies: '@jridgewell/source-map': 0.3.5 @@ -17822,16 +17736,6 @@ snapshots: text-extensions@1.9.0: {} - text-hex@1.0.0: {} - - thenify-all@1.6.0: - dependencies: - thenify: 3.3.1 - - thenify@3.3.1: - dependencies: - any-promise: 1.3.0 - through2@2.0.5: dependencies: readable-stream: 2.3.8 @@ -17839,6 +17743,10 @@ snapshots: through@2.3.8: {} + time-zone@1.0.0: {} + + tinybench@2.9.0: {} + tinyexec@0.3.2: {} tinyglobby@0.2.12: @@ -17851,8 +17759,14 @@ snapshots: fdir: 6.4.4(picomatch@4.0.2) picomatch: 4.0.2 + tinypool@1.1.1: {} + tinyqueue@2.0.3: {} + tinyrainbow@1.2.0: {} + + tinyspy@3.0.2: {} + tmp@0.2.5: {} to-regex-range@5.0.1: @@ -17867,9 +17781,7 @@ snapshots: dependencies: commander: 2.20.3 - tr46@1.0.1: - dependencies: - punycode: 2.3.1 + tr46@0.0.3: {} tree-kill@1.2.2: {} @@ -17879,16 +17791,12 @@ 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): dependencies: typescript: 5.8.3 - ts-interface-checker@0.1.13: {} - tsconfig-paths@4.2.0: dependencies: json5: 2.2.3 @@ -17901,33 +17809,6 @@ snapshots: optionalDependencies: typescript: 5.8.3 - tsup@8.4.0(postcss@8.5.3)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.2): - dependencies: - bundle-require: 5.1.0(esbuild@0.25.3) - cac: 6.7.14 - chokidar: 4.0.3 - consola: 3.4.2 - debug: 4.4.0 - esbuild: 0.25.3 - joycon: 3.1.1 - picocolors: 1.1.1 - postcss-load-config: 6.0.1(postcss@8.5.3)(tsx@4.19.4)(yaml@2.8.2) - resolve-from: 5.0.0 - rollup: 4.40.1 - source-map: 0.8.0-beta.0 - sucrase: 3.35.0 - tinyexec: 0.3.2 - tinyglobby: 0.2.13 - tree-kill: 1.2.2 - optionalDependencies: - postcss: 8.5.3 - typescript: 5.8.3 - transitivePeerDependencies: - - jiti - - supports-color - - tsx - - yaml - tsx@4.19.4: dependencies: esbuild: 0.25.3 @@ -17947,6 +17828,8 @@ snapshots: dependencies: prelude-ls: 1.2.1 + type-fest@0.13.1: {} + type-fest@0.18.1: {} type-fest@0.4.1: {} @@ -18165,6 +18048,69 @@ snapshots: unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 + vite-node@2.1.9(@types/node@22.15.3)(terser@5.26.0): + dependencies: + cac: 6.7.14 + debug: 4.4.3 + es-module-lexer: 1.7.0 + pathe: 1.1.2 + vite: 5.4.21(@types/node@22.15.3)(terser@5.26.0) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + vite@5.4.21(@types/node@22.15.3)(terser@5.26.0): + dependencies: + esbuild: 0.21.5 + postcss: 8.5.3 + rollup: 4.40.1 + optionalDependencies: + '@types/node': 22.15.3 + fsevents: 2.3.3 + terser: 5.26.0 + + vitest@2.1.9(@types/node@22.15.3)(terser@5.26.0): + dependencies: + '@vitest/expect': 2.1.9 + '@vitest/mocker': 2.1.9(vite@5.4.21(@types/node@22.15.3)(terser@5.26.0)) + '@vitest/pretty-format': 2.1.9 + '@vitest/runner': 2.1.9 + '@vitest/snapshot': 2.1.9 + '@vitest/spy': 2.1.9 + '@vitest/utils': 2.1.9 + chai: 5.3.3 + debug: 4.4.3 + expect-type: 1.3.0 + magic-string: 0.30.17 + pathe: 1.1.2 + std-env: 3.10.0 + tinybench: 2.9.0 + tinyexec: 0.3.2 + tinypool: 1.1.1 + tinyrainbow: 1.2.0 + vite: 5.4.21(@types/node@22.15.3)(terser@5.26.0) + vite-node: 2.1.9(@types/node@22.15.3)(terser@5.26.0) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/node': 22.15.3 + transitivePeerDependencies: + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + vue-template-compiler@2.7.16: dependencies: de-indent: 1.0.2 @@ -18179,13 +18125,14 @@ snapshots: web-namespaces@2.0.1: {} - webidl-conversions@4.0.2: {} + webidl-conversions@3.0.1: {} - whatwg-url@7.1.0: + well-known-symbols@2.0.0: {} + + whatwg-url@5.0.0: dependencies: - lodash.sortby: 4.7.0 - tr46: 1.0.1 - webidl-conversions: 4.0.2 + tr46: 0.0.3 + webidl-conversions: 3.0.1 which-boxed-primitive@1.1.0: dependencies: @@ -18238,29 +18185,14 @@ snapshots: dependencies: isexe: 3.1.1 - wide-align@1.1.5: - dependencies: - string-width: 4.2.3 - - winston-transport@4.9.0: + why-is-node-running@2.3.0: dependencies: - logform: 2.7.0 - readable-stream: 3.6.2 - triple-beam: 1.4.1 + siginfo: 2.0.0 + stackback: 0.0.2 - winston@3.17.0: + wide-align@1.1.5: 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 + string-width: 4.2.3 wkt-parser@1.3.3: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 1d9616750..a6e922d48 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -8,8 +8,6 @@ catalog: "@types/tape": ^5.8.1 benchmark: ^2.1.4 tape: ^5.9.0 - tslib: ^2.8.1 tstyche: ^6.2.0 - tsup: ^8.4.0 tsx: ^4.19.4 typescript: ^5.8.3 diff --git a/tsconfig.shared.json b/tsconfig.shared.json index 81cb45d27..83b549991 100644 --- a/tsconfig.shared.json +++ b/tsconfig.shared.json @@ -1,13 +1,12 @@ { + "include": ["${configDir}/index.ts", "${configDir}/lib/**/*.ts"], "compilerOptions": { - "target": "es2017", - "module": "node16", + "outDir": "${configDir}/dist", + "target": "es2022", + "module": "node18", "declaration": true, - "esModuleInterop": true, "strict": true, - "moduleResolution": "node16", - "importHelpers": true, - "skipLibCheck": true, - "erasableSyntaxOnly": true + "erasableSyntaxOnly": true, + "skipLibCheck": false } } diff --git a/tsup.config.ts b/tsup.config.ts deleted file mode 100644 index 283f08773..000000000 --- a/tsup.config.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { defineConfig, type Options } from "tsup"; - -const baseOptions: Options = { - clean: true, - dts: true, - entry: ["index.?s"], // while we have a mix of TS and JS packages - minify: false, - skipNodeModulesBundle: true, - sourcemap: true, - target: "es2017", - tsconfig: "./tsconfig.json", - // treeshake: true, causes "chunk.default" warning, breaks CJS exports? - cjsInterop: true, - splitting: true, -}; - -export default [ - defineConfig({ - ...baseOptions, - outDir: "dist/cjs", - format: "cjs", - }), - defineConfig({ - ...baseOptions, - outDir: "dist/esm", - format: "esm", - }), -];