package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "@turf/buffer",
  3. "version": "7.2.0",
  4. "description": "turf buffer module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Tom MacWright <@tmcw>",
  8. "Denis Carriere <@DenisCarriere>",
  9. "Stefano Borghi <@stebogit>"
  10. ],
  11. "license": "MIT",
  12. "bugs": {
  13. "url": "https://github.com/Turfjs/turf/issues"
  14. },
  15. "homepage": "https://github.com/Turfjs/turf",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/Turfjs/turf.git"
  19. },
  20. "funding": "https://opencollective.com/turf",
  21. "publishConfig": {
  22. "access": "public"
  23. },
  24. "keywords": [
  25. "buffer",
  26. "offset",
  27. "polygon",
  28. "linestring",
  29. "point",
  30. "geojson",
  31. "turf"
  32. ],
  33. "type": "module",
  34. "main": "dist/cjs/index.cjs",
  35. "module": "dist/esm/index.js",
  36. "types": "dist/esm/index.d.ts",
  37. "exports": {
  38. "./package.json": "./package.json",
  39. ".": {
  40. "import": {
  41. "types": "./dist/esm/index.d.ts",
  42. "default": "./dist/esm/index.js"
  43. },
  44. "require": {
  45. "types": "./dist/cjs/index.d.cts",
  46. "default": "./dist/cjs/index.cjs"
  47. }
  48. }
  49. },
  50. "sideEffects": false,
  51. "files": [
  52. "dist"
  53. ],
  54. "scripts": {
  55. "bench": "tsx bench.ts",
  56. "build": "tsup --config ../../tsup.config.ts",
  57. "docs": "tsx ../../scripts/generate-readmes.ts",
  58. "test": "npm-run-all --npm-path npm test:*",
  59. "test:tape": "tsx test.ts",
  60. "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
  61. },
  62. "devDependencies": {
  63. "@turf/truncate": "^7.2.0",
  64. "@types/benchmark": "^2.1.5",
  65. "@types/tape": "^4.13.4",
  66. "benchmark": "^2.1.4",
  67. "load-json-file": "^7.0.1",
  68. "npm-run-all": "^4.1.5",
  69. "tape": "^5.9.0",
  70. "tsup": "^8.3.5",
  71. "tsx": "^4.19.2",
  72. "write-json-file": "^5.0.0"
  73. },
  74. "dependencies": {
  75. "@turf/bbox": "^7.2.0",
  76. "@turf/center": "^7.2.0",
  77. "@turf/helpers": "^7.2.0",
  78. "@turf/jsts": "^2.7.1",
  79. "@turf/meta": "^7.2.0",
  80. "@turf/projection": "^7.2.0",
  81. "@types/geojson": "^7946.0.10",
  82. "d3-geo": "1.7.1"
  83. },
  84. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  85. }