package.json 1.7 KB

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