package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@turf/rhumb-distance",
  3. "version": "7.2.0",
  4. "description": "turf rhumb-distance module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Chris Veness <@chrisveness>",
  8. "Stefano Borghi <@stebogit>",
  9. "Denis Carriere <@DenisCarriere>"
  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. "turf",
  26. "distance",
  27. "rhumb line",
  28. "rhumb",
  29. "loxodrome",
  30. "miles",
  31. "km"
  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. },
  61. "devDependencies": {
  62. "@turf/distance": "^7.2.0",
  63. "@types/benchmark": "^2.1.5",
  64. "@types/tape": "^4.13.4",
  65. "benchmark": "^2.1.4",
  66. "load-json-file": "^7.0.1",
  67. "npm-run-all": "^4.1.5",
  68. "tape": "^5.9.0",
  69. "tsup": "^8.3.5",
  70. "tsx": "^4.19.2",
  71. "typescript": "^5.5.4",
  72. "write-json-file": "^5.0.0"
  73. },
  74. "dependencies": {
  75. "@turf/helpers": "^7.2.0",
  76. "@turf/invariant": "^7.2.0",
  77. "@types/geojson": "^7946.0.10",
  78. "tslib": "^2.8.1"
  79. },
  80. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  81. }