package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "@turf/combine",
  3. "version": "7.2.0",
  4. "description": "turf combine 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. "geojson",
  22. "multipoint",
  23. "multipolygon",
  24. "combine"
  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. },
  54. "devDependencies": {
  55. "@types/benchmark": "^2.1.5",
  56. "@types/tape": "^4.13.4",
  57. "benchmark": "^2.1.4",
  58. "npm-run-all": "^4.1.5",
  59. "tape": "^5.9.0",
  60. "tsup": "^8.3.5",
  61. "tsx": "^4.19.2",
  62. "typescript": "^5.5.4"
  63. },
  64. "dependencies": {
  65. "@turf/helpers": "^7.2.0",
  66. "@turf/meta": "^7.2.0",
  67. "@types/geojson": "^7946.0.10",
  68. "tslib": "^2.8.1"
  69. },
  70. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  71. }