package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "@turf/tesselate",
  3. "version": "7.2.0",
  4. "description": "turf tesselate module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Abel Vázquez <@AbelVM>",
  8. "Morgan Herlocker <@morganherlocker>",
  9. "Tom MacWright <@tmcw>",
  10. "Vladimir Agafonkin <@mourner>"
  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. "turfjs",
  28. "tesselation",
  29. "earcut",
  30. "polygon",
  31. "triangles"
  32. ],
  33. "type": "module",
  34. "main": "dist/cjs/index.cjs",
  35. "module": "dist/esm/index.js",
  36. "types": "dist/esm/index.d.ts",
  37. "exports": {
  38. "./package.json": "./package.json",
  39. ".": {
  40. "import": {
  41. "types": "./dist/esm/index.d.ts",
  42. "default": "./dist/esm/index.js"
  43. },
  44. "require": {
  45. "types": "./dist/cjs/index.d.cts",
  46. "default": "./dist/cjs/index.cjs"
  47. }
  48. }
  49. },
  50. "sideEffects": false,
  51. "files": [
  52. "dist"
  53. ],
  54. "scripts": {
  55. "bench": "tsx bench.ts",
  56. "build": "tsup --config ../../tsup.config.ts",
  57. "docs": "tsx ../../scripts/generate-readmes.ts",
  58. "test": "npm-run-all --npm-path npm test:*",
  59. "test:tape": "tsx test.ts"
  60. },
  61. "devDependencies": {
  62. "@types/benchmark": "^2.1.5",
  63. "@types/tape": "^4.13.4",
  64. "benchmark": "^2.1.4",
  65. "npm-run-all": "^4.1.5",
  66. "tape": "^5.9.0",
  67. "tsup": "^8.3.5",
  68. "tsx": "^4.19.2",
  69. "typescript": "^5.5.4"
  70. },
  71. "dependencies": {
  72. "@turf/helpers": "^7.2.0",
  73. "@types/geojson": "^7946.0.10",
  74. "earcut": "^2.2.4",
  75. "tslib": "^2.8.1"
  76. },
  77. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  78. }