package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "@turf/clone",
  3. "version": "7.2.0",
  4. "description": "turf clone 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. "clone"
  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. "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
  54. },
  55. "devDependencies": {
  56. "@turf/meta": "^7.2.0",
  57. "@types/benchmark": "^2.1.5",
  58. "@types/tape": "^4.13.4",
  59. "benchmark": "^2.1.4",
  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. },
  66. "dependencies": {
  67. "@turf/helpers": "^7.2.0",
  68. "@types/geojson": "^7946.0.10",
  69. "tslib": "^2.8.1"
  70. },
  71. "gitHead": "7b0f0374c4668cd569f8904c71e2ae7d941be867"
  72. }