package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "@turf/boolean-parallel",
  3. "version": "7.2.0",
  4. "description": "turf boolean-parallel module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Stefano Borghi <@stebogit>"
  8. ],
  9. "license": "MIT",
  10. "bugs": {
  11. "url": "https://github.com/Turfjs/turf/issues"
  12. },
  13. "homepage": "https://github.com/Turfjs/turf",
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/Turfjs/turf.git"
  17. },
  18. "funding": "https://opencollective.com/turf",
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "keywords": [
  23. "turf",
  24. "parallel",
  25. "boolean",
  26. "boolean-parallel"
  27. ],
  28. "type": "module",
  29. "main": "dist/cjs/index.cjs",
  30. "module": "dist/esm/index.js",
  31. "types": "dist/esm/index.d.ts",
  32. "exports": {
  33. "./package.json": "./package.json",
  34. ".": {
  35. "import": {
  36. "types": "./dist/esm/index.d.ts",
  37. "default": "./dist/esm/index.js"
  38. },
  39. "require": {
  40. "types": "./dist/cjs/index.d.cts",
  41. "default": "./dist/cjs/index.cjs"
  42. }
  43. }
  44. },
  45. "sideEffects": false,
  46. "files": [
  47. "dist"
  48. ],
  49. "scripts": {
  50. "bench": "tsx bench.ts",
  51. "build": "tsup --config ../../tsup.config.ts",
  52. "docs": "tsx ../../scripts/generate-readmes.ts",
  53. "test": "npm-run-all --npm-path npm test:*",
  54. "test:tape": "tsx test.ts"
  55. },
  56. "devDependencies": {
  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/clean-coords": "^7.2.0",
  70. "@turf/helpers": "^7.2.0",
  71. "@turf/line-segment": "^7.2.0",
  72. "@turf/rhumb-bearing": "^7.2.0",
  73. "@types/geojson": "^7946.0.10",
  74. "tslib": "^2.8.1"
  75. },
  76. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  77. }