package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "@turf/point-to-polygon-distance",
  3. "version": "7.2.0",
  4. "description": "turf point-to-polygon-distance module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Marc <@pachacamac>"
  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. "gis",
  25. "point",
  26. "polygon",
  27. "distance"
  28. ],
  29. "type": "module",
  30. "main": "dist/cjs/index.cjs",
  31. "module": "dist/esm/index.js",
  32. "types": "dist/esm/index.d.ts",
  33. "exports": {
  34. "./package.json": "./package.json",
  35. ".": {
  36. "import": {
  37. "types": "./dist/esm/index.d.ts",
  38. "default": "./dist/esm/index.js"
  39. },
  40. "require": {
  41. "types": "./dist/cjs/index.d.cts",
  42. "default": "./dist/cjs/index.cjs"
  43. }
  44. }
  45. },
  46. "sideEffects": false,
  47. "files": [
  48. "dist"
  49. ],
  50. "scripts": {
  51. "bench": "tsx bench.ts",
  52. "build": "tsup --config ../../tsup.config.ts",
  53. "docs": "tsx ../../scripts/generate-readmes.ts",
  54. "test": "npm-run-all --npm-path npm test:*",
  55. "test:tape": "tsx test.ts"
  56. },
  57. "devDependencies": {
  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/boolean-point-in-polygon": "^7.2.0",
  71. "@turf/helpers": "^7.2.0",
  72. "@turf/invariant": "^7.2.0",
  73. "@turf/meta": "^7.2.0",
  74. "@turf/point-to-line-distance": "^7.2.0",
  75. "@turf/polygon-to-line": "^7.2.0",
  76. "@types/geojson": "^7946.0.10",
  77. "tslib": "^2.8.1"
  78. },
  79. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  80. }