package.json 2.0 KB

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