package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "@turf/truncate",
  3. "version": "7.2.0",
  4. "description": "turf truncate module",
  5. "author": "Turf Authors",
  6. "contributors": [
  7. "Denis Carriere <@DenisCarriere>"
  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. "geojson",
  25. "gis",
  26. "truncate"
  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. "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
  56. },
  57. "devDependencies": {
  58. "@types/benchmark": "^2.1.5",
  59. "@types/tape": "^4.13.4",
  60. "benchmark": "^2.1.4",
  61. "load-json-file": "^7.0.1",
  62. "npm-run-all": "^4.1.5",
  63. "tape": "^5.9.0",
  64. "tsup": "^8.3.5",
  65. "tsx": "^4.19.2",
  66. "typescript": "^5.5.4",
  67. "write-json-file": "^5.0.0"
  68. },
  69. "dependencies": {
  70. "@turf/helpers": "^7.2.0",
  71. "@turf/meta": "^7.2.0",
  72. "@types/geojson": "^7946.0.10",
  73. "tslib": "^2.8.1"
  74. },
  75. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  76. }