package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "@turf/point-to-line-distance",
  3. "version": "7.2.0",
  4. "description": "turf point-to-line-distance module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Stefano Borghi <@stebogit>"
  8. ],
  9. "license": "MIT",
  10. "bugs": {
  11. "url": "https://github.com/Turfjs/turf/issues"
  12. },
  13. "homepage": "https://github.com/Turfjs/turf",
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/Turfjs/turf.git"
  17. },
  18. "funding": "https://opencollective.com/turf",
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "keywords": [
  23. "turf",
  24. "point-to-line-distance",
  25. "distance"
  26. ],
  27. "type": "module",
  28. "main": "dist/cjs/index.cjs",
  29. "module": "dist/esm/index.js",
  30. "types": "dist/esm/index.d.ts",
  31. "exports": {
  32. "./package.json": "./package.json",
  33. ".": {
  34. "import": {
  35. "types": "./dist/esm/index.d.ts",
  36. "default": "./dist/esm/index.js"
  37. },
  38. "require": {
  39. "types": "./dist/cjs/index.d.cts",
  40. "default": "./dist/cjs/index.cjs"
  41. }
  42. }
  43. },
  44. "sideEffects": false,
  45. "files": [
  46. "dist"
  47. ],
  48. "scripts": {
  49. "bench": "tsx bench.ts",
  50. "build": "tsup --config ../../tsup.config.ts",
  51. "docs": "tsx ../../scripts/generate-readmes.ts",
  52. "test": "npm-run-all --npm-path npm test:*",
  53. "test:tape": "tsx test.ts",
  54. "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
  55. },
  56. "devDependencies": {
  57. "@turf/circle": "^7.2.0",
  58. "@types/benchmark": "^2.1.5",
  59. "@types/tape": "^4.13.4",
  60. "benchmark": "^2.1.4",
  61. "load-json-file": "^7.0.1",
  62. "npm-run-all": "^4.1.5",
  63. "tape": "^5.9.0",
  64. "tsup": "^8.3.5",
  65. "tsx": "^4.19.2",
  66. "typescript": "^5.5.4",
  67. "write-json-file": "^5.0.0"
  68. },
  69. "dependencies": {
  70. "@turf/bearing": "^7.2.0",
  71. "@turf/distance": "^7.2.0",
  72. "@turf/helpers": "^7.2.0",
  73. "@turf/invariant": "^7.2.0",
  74. "@turf/meta": "^7.2.0",
  75. "@turf/nearest-point-on-line": "^7.2.0",
  76. "@turf/projection": "^7.2.0",
  77. "@turf/rhumb-bearing": "^7.2.0",
  78. "@turf/rhumb-distance": "^7.2.0",
  79. "@types/geojson": "^7946.0.10",
  80. "tslib": "^2.8.1"
  81. },
  82. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  83. }