package.json 2.2 KB

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