package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "@turf/line-intersect",
  3. "version": "7.2.0",
  4. "description": "turf line-intersect module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Denis Carriere <@DenisCarriere>",
  8. "Daniel Pulido <@dpmcmlxxvi>"
  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. "geojson",
  26. "gis",
  27. "line",
  28. "intersect"
  29. ],
  30. "type": "module",
  31. "main": "dist/cjs/index.cjs",
  32. "module": "dist/esm/index.js",
  33. "types": "dist/esm/index.d.ts",
  34. "exports": {
  35. "./package.json": "./package.json",
  36. ".": {
  37. "import": {
  38. "types": "./dist/esm/index.d.ts",
  39. "default": "./dist/esm/index.js"
  40. },
  41. "require": {
  42. "types": "./dist/cjs/index.d.cts",
  43. "default": "./dist/cjs/index.cjs"
  44. }
  45. }
  46. },
  47. "sideEffects": false,
  48. "files": [
  49. "dist"
  50. ],
  51. "scripts": {
  52. "bench": "tsx bench.ts",
  53. "build": "tsup --config ../../tsup.config.ts",
  54. "docs": "tsx ../../scripts/generate-readmes.ts",
  55. "test": "npm-run-all --npm-path npm test:*",
  56. "test:tape": "tsx test.ts"
  57. },
  58. "devDependencies": {
  59. "@turf/truncate": "^7.2.0",
  60. "@types/benchmark": "^2.1.5",
  61. "@types/tape": "^4.13.4",
  62. "benchmark": "^2.1.4",
  63. "load-json-file": "^7.0.1",
  64. "npm-run-all": "^4.1.5",
  65. "tape": "^5.9.0",
  66. "tsup": "^8.3.5",
  67. "tsx": "^4.19.2",
  68. "typescript": "^5.5.4",
  69. "write-json-file": "^5.0.0"
  70. },
  71. "dependencies": {
  72. "@turf/helpers": "^7.2.0",
  73. "@types/geojson": "^7946.0.10",
  74. "sweepline-intersections": "^1.5.0",
  75. "tslib": "^2.8.1"
  76. },
  77. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  78. }