@turf/line-intersect
Advanced tools
Comparing version 7.0.0-alpha.2 to 7.0.0-alpha.110
{ | ||
"name": "@turf/line-intersect", | ||
"version": "7.0.0-alpha.2", | ||
"version": "7.0.0-alpha.110+1411d63a7", | ||
"description": "turf line-intersect module", | ||
@@ -30,13 +30,19 @@ "author": "Turf Authors", | ||
], | ||
"main": "dist/js/index.js", | ||
"module": "dist/es/index.js", | ||
"type": "commonjs", | ||
"main": "dist/cjs/index.cjs", | ||
"module": "dist/esm/index.mjs", | ||
"types": "dist/cjs/index.d.ts", | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"types": "./dist/js/index.d.ts", | ||
"import": "./dist/es/index.js", | ||
"require": "./dist/js/index.js" | ||
"import": { | ||
"types": "./dist/esm/index.d.mts", | ||
"default": "./dist/esm/index.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/cjs/index.d.ts", | ||
"default": "./dist/cjs/index.cjs" | ||
} | ||
} | ||
}, | ||
"types": "dist/js/index.d.ts", | ||
"sideEffects": false, | ||
@@ -47,28 +53,27 @@ "files": [ | ||
"scripts": { | ||
"bench": "tsx bench.js", | ||
"build": "npm-run-all build:*", | ||
"build:es": "tsc --outDir dist/es --module esnext --declaration false && echo '{\"type\":\"module\"}' > dist/es/package.json", | ||
"build:js": "tsc", | ||
"docs": "tsx ../../scripts/generate-readmes", | ||
"test": "npm-run-all test:*", | ||
"test:tape": "tsx test.js" | ||
"bench": "tsx bench.ts", | ||
"build": "tsup --config ../../tsup.config.ts", | ||
"docs": "tsx ../../scripts/generate-readmes.ts", | ||
"test": "npm-run-all --npm-path npm test:*", | ||
"test:tape": "tsx test.ts" | ||
}, | ||
"devDependencies": { | ||
"@turf/truncate": "^7.0.0-alpha.2", | ||
"@types/tape": "*", | ||
"benchmark": "*", | ||
"load-json-file": "*", | ||
"npm-run-all": "*", | ||
"tape": "*", | ||
"tslint": "*", | ||
"tsx": "*", | ||
"typescript": "*", | ||
"write-json-file": "*" | ||
"@turf/truncate": "^7.0.0-alpha.110+1411d63a7", | ||
"@types/benchmark": "^2.1.5", | ||
"@types/tape": "^4.2.32", | ||
"benchmark": "^2.1.4", | ||
"load-json-file": "^7.0.1", | ||
"npm-run-all": "^4.1.5", | ||
"tape": "^5.7.2", | ||
"tsup": "^8.0.1", | ||
"tsx": "^4.6.2", | ||
"typescript": "^5.2.2", | ||
"write-json-file": "^5.0.0" | ||
}, | ||
"dependencies": { | ||
"@turf/helpers": "^7.0.0-alpha.2", | ||
"sweepline-intersections": "^1.4.0", | ||
"tslib": "^2.3.0" | ||
"@turf/helpers": "^7.0.0-alpha.110+1411d63a7", | ||
"sweepline-intersections": "^1.5.0", | ||
"tslib": "^2.6.2" | ||
}, | ||
"gitHead": "dd35b52725945b4fa29a98d9a550733e06cc222e" | ||
"gitHead": "1411d63a74c275c9216fe48e9d3cb2d48a359068" | ||
} |
@@ -13,3 +13,7 @@ # @turf/line-intersect | ||
* `line2` **[GeoJSON][1]** any LineString or Polygon | ||
* `options` **[Object][2]** Optional parameters (optional, default `{}`) | ||
* `options.removeDuplicates` **[boolean][3]** remove duplicate intersections (optional, default `true`) | ||
* `options.ignoreSelfIntersections` **[boolean][3]** ignores self-intersections on input features (optional, default `false`) | ||
### Examples | ||
@@ -26,24 +30,23 @@ | ||
Returns **[FeatureCollection][2]<[Point][3]>** point(s) that intersect both | ||
Returns **[FeatureCollection][4]<[Point][5]>** point(s) that intersect both | ||
[1]: https://tools.ietf.org/html/rfc7946#section-3 | ||
[2]: https://tools.ietf.org/html/rfc7946#section-3.3 | ||
[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object | ||
[3]: https://tools.ietf.org/html/rfc7946#section-3.1.2 | ||
[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean | ||
<!-- This file is automatically generated. Please don't edit it directly: | ||
if you find an error, edit the source file (likely index.js), and re-run | ||
./scripts/generate-readmes in the turf project. --> | ||
[4]: https://tools.ietf.org/html/rfc7946#section-3.3 | ||
[5]: https://tools.ietf.org/html/rfc7946#section-3.1.2 | ||
<!-- This file is automatically generated. Please don't edit it directly. If you find an error, edit the source file of the module in question (likely index.js or index.ts), and re-run "yarn docs" from the root of the turf project. --> | ||
--- | ||
This module is part of the [Turfjs project](http://turfjs.org/), an open source | ||
module collection dedicated to geographic algorithms. It is maintained in the | ||
[Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create | ||
PRs and issues. | ||
This module is part of the [Turfjs project](https://turfjs.org/), an open source module collection dedicated to geographic algorithms. It is maintained in the [Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create PRs and issues. | ||
### Installation | ||
Install this module individually: | ||
Install this single module individually: | ||
@@ -54,3 +57,3 @@ ```sh | ||
Or install the Turf module that includes it as a function: | ||
Or install the all-encompassing @turf/turf module that includes all modules as functions: | ||
@@ -57,0 +60,0 @@ ```sh |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19586
9
60
11
115
2
Updatedtslib@^2.6.2