package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "@turf/bbox",
  3. "version": "7.2.0",
  4. "description": "turf bbox 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. "extent",
  22. "bbox",
  23. "polygon",
  24. "featurecollection",
  25. "geojson"
  26. ],
  27. "type": "module",
  28. "main": "dist/cjs/index.cjs",
  29. "module": "dist/esm/index.js",
  30. "types": "dist/esm/index.d.ts",
  31. "exports": {
  32. "./package.json": "./package.json",
  33. ".": {
  34. "import": {
  35. "types": "./dist/esm/index.d.ts",
  36. "default": "./dist/esm/index.js"
  37. },
  38. "require": {
  39. "types": "./dist/cjs/index.d.cts",
  40. "default": "./dist/cjs/index.cjs"
  41. }
  42. }
  43. },
  44. "sideEffects": false,
  45. "files": [
  46. "dist"
  47. ],
  48. "scripts": {
  49. "bench": "tsx bench.ts",
  50. "build": "tsup --config ../../tsup.config.ts",
  51. "docs": "tsx ../../scripts/generate-readmes.ts",
  52. "test": "npm-run-all --npm-path npm test:*",
  53. "test:tape": "tsx test.ts"
  54. },
  55. "devDependencies": {
  56. "@types/benchmark": "^2.1.5",
  57. "@types/tape": "^4.13.4",
  58. "benchmark": "^2.1.4",
  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. },
  65. "dependencies": {
  66. "@turf/helpers": "^7.2.0",
  67. "@turf/meta": "^7.2.0",
  68. "@types/geojson": "^7946.0.10",
  69. "tslib": "^2.8.1"
  70. },
  71. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  72. }