package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "@turf/intersect",
  3. "version": "7.2.0",
  4. "description": "turf intersect 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. "gis",
  22. "intersect"
  23. ],
  24. "type": "module",
  25. "main": "dist/cjs/index.cjs",
  26. "module": "dist/esm/index.js",
  27. "types": "dist/esm/index.d.ts",
  28. "exports": {
  29. "./package.json": "./package.json",
  30. ".": {
  31. "import": {
  32. "types": "./dist/esm/index.d.ts",
  33. "default": "./dist/esm/index.js"
  34. },
  35. "require": {
  36. "types": "./dist/cjs/index.d.cts",
  37. "default": "./dist/cjs/index.cjs"
  38. }
  39. }
  40. },
  41. "sideEffects": false,
  42. "files": [
  43. "dist"
  44. ],
  45. "scripts": {
  46. "bench": "tsx bench.ts",
  47. "build": "tsup --config ../../tsup.config.ts",
  48. "docs": "tsx ../../scripts/generate-readmes.ts",
  49. "test": "npm-run-all --npm-path npm test:*",
  50. "test:tape": "tsx test.ts",
  51. "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
  52. },
  53. "devDependencies": {
  54. "@types/benchmark": "^2.1.5",
  55. "@types/tape": "^4.13.4",
  56. "benchmark": "^2.1.4",
  57. "glob": "^10.3.10",
  58. "load-json-file": "^7.0.1",
  59. "npm-run-all": "^4.1.5",
  60. "tape": "^5.9.0",
  61. "tsup": "^8.3.5",
  62. "tsx": "^4.19.2",
  63. "typescript": "^5.5.4",
  64. "write-json-file": "^5.0.0"
  65. },
  66. "dependencies": {
  67. "@turf/helpers": "^7.2.0",
  68. "@turf/meta": "^7.2.0",
  69. "@types/geojson": "^7946.0.10",
  70. "polyclip-ts": "^0.16.8",
  71. "tslib": "^2.8.1"
  72. },
  73. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  74. }