package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "@turf/concave",
  3. "version": "7.2.0",
  4. "description": "turf concave module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Tom MacWright <@tmcw>",
  8. "Lyzi Diamond <@lyzidiamond>",
  9. "Denis Carriere <@DenisCarriere>",
  10. "Stefano Borghi <@stebogit>",
  11. "Rowan Winsemius <@rowanwins>",
  12. "Daniel Pulido <@dpmcmlxxvi>",
  13. "Stephen Whitmore <@noffle>",
  14. "Gregor MacLennan <@gmaclennan>",
  15. "Mike Bostock <@mbostock>"
  16. ],
  17. "license": "MIT",
  18. "bugs": {
  19. "url": "https://github.com/Turfjs/turf/issues"
  20. },
  21. "homepage": "https://github.com/Turfjs/turf",
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/Turfjs/turf.git"
  25. },
  26. "funding": "https://opencollective.com/turf",
  27. "publishConfig": {
  28. "access": "public"
  29. },
  30. "keywords": [
  31. "turf",
  32. "gis",
  33. "concave",
  34. "geometry"
  35. ],
  36. "type": "module",
  37. "main": "dist/cjs/index.cjs",
  38. "module": "dist/esm/index.js",
  39. "types": "dist/esm/index.d.ts",
  40. "exports": {
  41. "./package.json": "./package.json",
  42. ".": {
  43. "import": {
  44. "types": "./dist/esm/index.d.ts",
  45. "default": "./dist/esm/index.js"
  46. },
  47. "require": {
  48. "types": "./dist/cjs/index.d.cts",
  49. "default": "./dist/cjs/index.cjs"
  50. }
  51. }
  52. },
  53. "sideEffects": false,
  54. "files": [
  55. "dist"
  56. ],
  57. "scripts": {
  58. "bench": "tsx bench.ts",
  59. "build": "tsup --config ../../tsup.config.ts",
  60. "docs": "tsx ../../scripts/generate-readmes.ts",
  61. "test": "npm-run-all --npm-path npm test:*",
  62. "test:tape": "tsx test.ts"
  63. },
  64. "devDependencies": {
  65. "@types/benchmark": "^2.1.5",
  66. "@types/tape": "^4.13.4",
  67. "@types/topojson-client": "3.1.3",
  68. "@types/topojson-server": "3.0.3",
  69. "benchmark": "^2.1.4",
  70. "load-json-file": "^7.0.1",
  71. "npm-run-all": "^4.1.5",
  72. "tape": "^5.9.0",
  73. "tsup": "^8.3.5",
  74. "tsx": "^4.19.2",
  75. "typescript": "^5.5.4",
  76. "write-json-file": "^5.0.0"
  77. },
  78. "dependencies": {
  79. "@turf/clone": "^7.2.0",
  80. "@turf/distance": "^7.2.0",
  81. "@turf/helpers": "^7.2.0",
  82. "@turf/invariant": "^7.2.0",
  83. "@turf/meta": "^7.2.0",
  84. "@turf/tin": "^7.2.0",
  85. "@types/geojson": "^7946.0.10",
  86. "topojson-client": "3.x",
  87. "topojson-server": "3.x",
  88. "tslib": "^2.8.1"
  89. },
  90. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  91. }