package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@turf/quadrat-analysis",
  3. "version": "7.2.0",
  4. "description": "turf quadrat-analysis module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Haoming Zhuang <@zhuang-hao-ming>"
  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. "quadrat-analysis"
  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. "@turf/nearest-neighbor-analysis": "^7.2.0",
  56. "@types/benchmark": "^2.1.5",
  57. "@types/tape": "^4.13.4",
  58. "benchmark": "^2.1.4",
  59. "load-json-file": "^7.0.1",
  60. "npm-run-all": "^4.1.5",
  61. "tape": "^5.9.0",
  62. "tsup": "^8.3.5",
  63. "tsx": "^4.19.2",
  64. "typescript": "^5.5.4",
  65. "write-json-file": "^5.0.0"
  66. },
  67. "dependencies": {
  68. "@turf/area": "^7.2.0",
  69. "@turf/bbox": "^7.2.0",
  70. "@turf/bbox-polygon": "^7.2.0",
  71. "@turf/centroid": "^7.2.0",
  72. "@turf/helpers": "^7.2.0",
  73. "@turf/invariant": "^7.2.0",
  74. "@turf/point-grid": "^7.2.0",
  75. "@turf/random": "^7.2.0",
  76. "@turf/square-grid": "^7.2.0",
  77. "@types/geojson": "^7946.0.10",
  78. "tslib": "^2.8.1"
  79. },
  80. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  81. }