turf/packages/turf-buffer/package.json
mfedderly cf7a0c507b
Do the 7.0.0-alpha.1 release (#2493)
* update changelog

* v7.0.0-alpha.1

* More changelog
2023-09-18 19:41:14 -04:00

77 lines
1.8 KiB
JSON

{
"name": "@turf/buffer",
"version": "7.0.0-alpha.1",
"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"
],
"main": "dist/js/index.js",
"module": "dist/es/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"import": "./dist/es/index.js",
"require": "./dist/js/index.js"
}
},
"types": "index.d.ts",
"sideEffects": false,
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"bench": "tsx bench.js",
"build": "rollup -c ../../rollup.config.js && echo '{\"type\":\"module\"}' > dist/es/package.json",
"docs": "tsx ../../scripts/generate-readmes",
"test": "npm-run-all test:*",
"test:tape": "tsx test.js",
"test:types": "tsc --esModuleInterop --noEmit --strict types.ts"
},
"devDependencies": {
"@turf/truncate": "^7.0.0-alpha.1",
"benchmark": "*",
"load-json-file": "*",
"npm-run-all": "*",
"rollup": "*",
"tape": "*",
"tsx": "*",
"write-json-file": "*"
},
"dependencies": {
"@turf/bbox": "^7.0.0-alpha.1",
"@turf/center": "^7.0.0-alpha.1",
"@turf/helpers": "^7.0.0-alpha.1",
"@turf/jsts": "^2.7.1",
"@turf/meta": "^7.0.0-alpha.1",
"@turf/projection": "^7.0.0-alpha.1",
"d3-geo": "1.7.1"
}
}