package.json 2.0 KB

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