package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {
  2. "name": "@turf/line-chunk",
  3. "version": "7.2.0",
  4. "description": "turf line-chunk module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Tim Channell <@tcql>",
  8. "Rowan Winsemius <@rowanwins>",
  9. "Denis Carriere <@DenisCarriere>",
  10. "Daniel Pulido <@dpmcmlxxvi>"
  11. ],
  12. "license": "MIT",
  13. "bugs": {
  14. "url": "https://github.com/Turfjs/turf/issues"
  15. },
  16. "homepage": "https://github.com/Turfjs/turf",
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/Turfjs/turf.git"
  20. },
  21. "funding": "https://opencollective.com/turf",
  22. "publishConfig": {
  23. "access": "public"
  24. },
  25. "keywords": [
  26. "turf",
  27. "gis",
  28. "geojson",
  29. "linestring",
  30. "line segment"
  31. ],
  32. "type": "module",
  33. "main": "dist/cjs/index.cjs",
  34. "module": "dist/esm/index.js",
  35. "types": "dist/esm/index.d.ts",
  36. "exports": {
  37. "./package.json": "./package.json",
  38. ".": {
  39. "import": {
  40. "types": "./dist/esm/index.d.ts",
  41. "default": "./dist/esm/index.js"
  42. },
  43. "require": {
  44. "types": "./dist/cjs/index.d.cts",
  45. "default": "./dist/cjs/index.cjs"
  46. }
  47. }
  48. },
  49. "sideEffects": false,
  50. "files": [
  51. "dist"
  52. ],
  53. "scripts": {
  54. "bench": "tsx bench.ts",
  55. "build": "tsup --config ../../tsup.config.ts",
  56. "docs": "tsx ../../scripts/generate-readmes.ts",
  57. "test": "npm-run-all --npm-path npm test:*",
  58. "test:tape": "tsx test.ts",
  59. "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
  60. },
  61. "devDependencies": {
  62. "@turf/truncate": "^7.2.0",
  63. "@types/benchmark": "^2.1.5",
  64. "@types/tape": "^4.13.4",
  65. "benchmark": "^2.1.4",
  66. "load-json-file": "^7.0.1",
  67. "npm-run-all": "^4.1.5",
  68. "tape": "^5.9.0",
  69. "tsup": "^8.3.5",
  70. "tsx": "^4.19.2",
  71. "write-json-file": "^5.0.0"
  72. },
  73. "dependencies": {
  74. "@turf/helpers": "^7.2.0",
  75. "@turf/length": "^7.2.0",
  76. "@turf/line-slice-along": "^7.2.0",
  77. "@turf/meta": "^7.2.0",
  78. "@types/geojson": "^7946.0.10"
  79. },
  80. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  81. }