package.json 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. {
  2. "name": "@turf/turf",
  3. "version": "7.2.0",
  4. "description": "a JavaScript library for performing geospatial operations with GeoJSON",
  5. "author": "Turf Authors",
  6. "license": "MIT",
  7. "bugs": {
  8. "url": "https://github.com/Turfjs/turf/issues"
  9. },
  10. "homepage": "https://github.com/Turfjs/turf",
  11. "repository": {
  12. "type": "git",
  13. "url": "git://github.com/Turfjs/turf.git"
  14. },
  15. "funding": "https://opencollective.com/turf",
  16. "publishConfig": {
  17. "access": "public"
  18. },
  19. "keywords": [
  20. "gis",
  21. "geo",
  22. "geojs",
  23. "geospatial",
  24. "geography",
  25. "geometry",
  26. "map",
  27. "contour",
  28. "centroid",
  29. "tin",
  30. "extent",
  31. "geojson",
  32. "grid",
  33. "polygon",
  34. "line",
  35. "point",
  36. "area",
  37. "analysis",
  38. "statistics",
  39. "stats",
  40. "midpoint",
  41. "plane",
  42. "quantile",
  43. "jenks",
  44. "sample"
  45. ],
  46. "type": "module",
  47. "main": "dist/cjs/index.cjs",
  48. "module": "dist/esm/index.js",
  49. "types": "dist/esm/index.d.ts",
  50. "exports": {
  51. "./package.json": "./package.json",
  52. ".": {
  53. "import": {
  54. "types": "./dist/esm/index.d.ts",
  55. "default": "./dist/esm/index.js"
  56. },
  57. "require": {
  58. "types": "./dist/cjs/index.d.cts",
  59. "default": "./dist/cjs/index.cjs"
  60. }
  61. }
  62. },
  63. "browser": "turf.min.js",
  64. "sideEffects": false,
  65. "files": [
  66. "dist",
  67. "turf.min.js"
  68. ],
  69. "scripts": {
  70. "build": "tsup --config ../../tsup.config.ts && rollup -c rollup.config.js",
  71. "last-checks": "npm-run-all last-checks:testjs last-checks:example",
  72. "last-checks:example": "tsx test.example.js",
  73. "last-checks:testjs": "tsx test.ts",
  74. "test": "echo '@turf/turf tests run in the last-checks step'"
  75. },
  76. "devDependencies": {
  77. "@babel/core": "^7.26.0",
  78. "@babel/preset-env": "^7.26.0",
  79. "@rollup/plugin-babel": "^6.0.4",
  80. "@rollup/plugin-commonjs": "^28.0.1",
  81. "@rollup/plugin-node-resolve": "^15.3.0",
  82. "@rollup/plugin-terser": "^0.4.4",
  83. "@types/tape": "^4.13.4",
  84. "camelcase": "^8.0.0",
  85. "documentation": "^14.0.3",
  86. "glob": "^10.3.10",
  87. "rollup": "^4.28.0",
  88. "rollup-plugin-polyfill-node": "^0.13.0",
  89. "tape": "^5.9.0",
  90. "tsup": "^8.3.5",
  91. "tsx": "^4.19.2",
  92. "typescript": "^5.5.4"
  93. },
  94. "dependencies": {
  95. "@turf/along": "^7.2.0",
  96. "@turf/angle": "^7.2.0",
  97. "@turf/area": "^7.2.0",
  98. "@turf/bbox": "^7.2.0",
  99. "@turf/bbox-clip": "^7.2.0",
  100. "@turf/bbox-polygon": "^7.2.0",
  101. "@turf/bearing": "^7.2.0",
  102. "@turf/bezier-spline": "^7.2.0",
  103. "@turf/boolean-clockwise": "^7.2.0",
  104. "@turf/boolean-concave": "^7.2.0",
  105. "@turf/boolean-contains": "^7.2.0",
  106. "@turf/boolean-crosses": "^7.2.0",
  107. "@turf/boolean-disjoint": "^7.2.0",
  108. "@turf/boolean-equal": "^7.2.0",
  109. "@turf/boolean-intersects": "^7.2.0",
  110. "@turf/boolean-overlap": "^7.2.0",
  111. "@turf/boolean-parallel": "^7.2.0",
  112. "@turf/boolean-point-in-polygon": "^7.2.0",
  113. "@turf/boolean-point-on-line": "^7.2.0",
  114. "@turf/boolean-touches": "^7.2.0",
  115. "@turf/boolean-valid": "^7.2.0",
  116. "@turf/boolean-within": "^7.2.0",
  117. "@turf/buffer": "^7.2.0",
  118. "@turf/center": "^7.2.0",
  119. "@turf/center-mean": "^7.2.0",
  120. "@turf/center-median": "^7.2.0",
  121. "@turf/center-of-mass": "^7.2.0",
  122. "@turf/centroid": "^7.2.0",
  123. "@turf/circle": "^7.2.0",
  124. "@turf/clean-coords": "^7.2.0",
  125. "@turf/clone": "^7.2.0",
  126. "@turf/clusters": "^7.2.0",
  127. "@turf/clusters-dbscan": "^7.2.0",
  128. "@turf/clusters-kmeans": "^7.2.0",
  129. "@turf/collect": "^7.2.0",
  130. "@turf/combine": "^7.2.0",
  131. "@turf/concave": "^7.2.0",
  132. "@turf/convex": "^7.2.0",
  133. "@turf/destination": "^7.2.0",
  134. "@turf/difference": "^7.2.0",
  135. "@turf/dissolve": "^7.2.0",
  136. "@turf/distance": "^7.2.0",
  137. "@turf/distance-weight": "^7.2.0",
  138. "@turf/ellipse": "^7.2.0",
  139. "@turf/envelope": "^7.2.0",
  140. "@turf/explode": "^7.2.0",
  141. "@turf/flatten": "^7.2.0",
  142. "@turf/flip": "^7.2.0",
  143. "@turf/geojson-rbush": "^7.2.0",
  144. "@turf/great-circle": "^7.2.0",
  145. "@turf/helpers": "^7.2.0",
  146. "@turf/hex-grid": "^7.2.0",
  147. "@turf/interpolate": "^7.2.0",
  148. "@turf/intersect": "^7.2.0",
  149. "@turf/invariant": "^7.2.0",
  150. "@turf/isobands": "^7.2.0",
  151. "@turf/isolines": "^7.2.0",
  152. "@turf/kinks": "^7.2.0",
  153. "@turf/length": "^7.2.0",
  154. "@turf/line-arc": "^7.2.0",
  155. "@turf/line-chunk": "^7.2.0",
  156. "@turf/line-intersect": "^7.2.0",
  157. "@turf/line-offset": "^7.2.0",
  158. "@turf/line-overlap": "^7.2.0",
  159. "@turf/line-segment": "^7.2.0",
  160. "@turf/line-slice": "^7.2.0",
  161. "@turf/line-slice-along": "^7.2.0",
  162. "@turf/line-split": "^7.2.0",
  163. "@turf/line-to-polygon": "^7.2.0",
  164. "@turf/mask": "^7.2.0",
  165. "@turf/meta": "^7.2.0",
  166. "@turf/midpoint": "^7.2.0",
  167. "@turf/moran-index": "^7.2.0",
  168. "@turf/nearest-neighbor-analysis": "^7.2.0",
  169. "@turf/nearest-point": "^7.2.0",
  170. "@turf/nearest-point-on-line": "^7.2.0",
  171. "@turf/nearest-point-to-line": "^7.2.0",
  172. "@turf/planepoint": "^7.2.0",
  173. "@turf/point-grid": "^7.2.0",
  174. "@turf/point-on-feature": "^7.2.0",
  175. "@turf/point-to-line-distance": "^7.2.0",
  176. "@turf/point-to-polygon-distance": "^7.2.0",
  177. "@turf/points-within-polygon": "^7.2.0",
  178. "@turf/polygon-smooth": "^7.2.0",
  179. "@turf/polygon-tangents": "^7.2.0",
  180. "@turf/polygon-to-line": "^7.2.0",
  181. "@turf/polygonize": "^7.2.0",
  182. "@turf/projection": "^7.2.0",
  183. "@turf/quadrat-analysis": "^7.2.0",
  184. "@turf/random": "^7.2.0",
  185. "@turf/rectangle-grid": "^7.2.0",
  186. "@turf/rewind": "^7.2.0",
  187. "@turf/rhumb-bearing": "^7.2.0",
  188. "@turf/rhumb-destination": "^7.2.0",
  189. "@turf/rhumb-distance": "^7.2.0",
  190. "@turf/sample": "^7.2.0",
  191. "@turf/sector": "^7.2.0",
  192. "@turf/shortest-path": "^7.2.0",
  193. "@turf/simplify": "^7.2.0",
  194. "@turf/square": "^7.2.0",
  195. "@turf/square-grid": "^7.2.0",
  196. "@turf/standard-deviational-ellipse": "^7.2.0",
  197. "@turf/tag": "^7.2.0",
  198. "@turf/tesselate": "^7.2.0",
  199. "@turf/tin": "^7.2.0",
  200. "@turf/transform-rotate": "^7.2.0",
  201. "@turf/transform-scale": "^7.2.0",
  202. "@turf/transform-translate": "^7.2.0",
  203. "@turf/triangle-grid": "^7.2.0",
  204. "@turf/truncate": "^7.2.0",
  205. "@turf/union": "^7.2.0",
  206. "@turf/unkink-polygon": "^7.2.0",
  207. "@turf/voronoi": "^7.2.0",
  208. "@types/geojson": "^7946.0.10",
  209. "tslib": "^2.8.1"
  210. },
  211. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  212. }