package.json 2.0 KB

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