package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "@turf/rhumb-bearing",
  3. "version": "7.2.0",
  4. "description": "turf rhumb-bearing 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. "bearing",
  27. "loxodrome",
  28. "rhumb",
  29. "rhumb line"
  30. ],
  31. "type": "module",
  32. "main": "dist/cjs/index.cjs",
  33. "module": "dist/esm/index.js",
  34. "types": "dist/esm/index.d.ts",
  35. "exports": {
  36. "./package.json": "./package.json",
  37. ".": {
  38. "import": {
  39. "types": "./dist/esm/index.d.ts",
  40. "default": "./dist/esm/index.js"
  41. },
  42. "require": {
  43. "types": "./dist/cjs/index.d.cts",
  44. "default": "./dist/cjs/index.cjs"
  45. }
  46. }
  47. },
  48. "sideEffects": false,
  49. "files": [
  50. "dist"
  51. ],
  52. "scripts": {
  53. "bench": "tsx bench.ts",
  54. "build": "tsup --config ../../tsup.config.ts",
  55. "docs": "tsx ../../scripts/generate-readmes.ts",
  56. "test": "npm-run-all --npm-path npm test:*",
  57. "test:tape": "tsx test.ts"
  58. },
  59. "devDependencies": {
  60. "@turf/destination": "^7.2.0",
  61. "@types/benchmark": "^2.1.5",
  62. "@types/tape": "^4.13.4",
  63. "benchmark": "^2.1.4",
  64. "npm-run-all": "^4.1.5",
  65. "tape": "^5.9.0",
  66. "tsup": "^8.3.5",
  67. "tsx": "^4.19.2",
  68. "typescript": "^5.5.4",
  69. "write-json-file": "^5.0.0"
  70. },
  71. "dependencies": {
  72. "@turf/helpers": "^7.2.0",
  73. "@turf/invariant": "^7.2.0",
  74. "@types/geojson": "^7946.0.10",
  75. "tslib": "^2.8.1"
  76. },
  77. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  78. }