mirror of
https://github.com/Turfjs/turf.git
synced 2026-01-25 16:07:00 +00:00
85 lines
2.1 KiB
JSON
85 lines
2.1 KiB
JSON
{
|
|
"name": "@turf/buffer",
|
|
"version": "7.1.0",
|
|
"description": "turf buffer module",
|
|
"author": "Turf Authors",
|
|
"contributors": [
|
|
"Tom MacWright <@tmcw>",
|
|
"Denis Carriere <@DenisCarriere>",
|
|
"Stefano Borghi <@stebogit>"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Turfjs/turf/issues"
|
|
},
|
|
"homepage": "https://github.com/Turfjs/turf",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/Turfjs/turf.git"
|
|
},
|
|
"funding": "https://opencollective.com/turf",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"keywords": [
|
|
"buffer",
|
|
"offset",
|
|
"polygon",
|
|
"linestring",
|
|
"point",
|
|
"geojson",
|
|
"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"
|
|
}
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"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",
|
|
"test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@turf/truncate": "workspace:^",
|
|
"@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",
|
|
"write-json-file": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@turf/bbox": "workspace:^",
|
|
"@turf/center": "workspace:^",
|
|
"@turf/helpers": "workspace:^",
|
|
"@turf/jsts": "^2.7.1",
|
|
"@turf/meta": "workspace:^",
|
|
"@turf/projection": "workspace:^",
|
|
"@types/geojson": "^7946.0.10",
|
|
"d3-geo": "1.7.1"
|
|
}
|
|
}
|