package.json 2.2 KB

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