{
  "name": "arc",
  "version": "1.0.0",
  "description": "draw great circle arcs",
  "url": "https://github.com/springmeyer/arc.js",
  "keywords": [
    "maps",
    "spherical",
    "globe",
    "rhumb line",
    "crow flies",
    "great circle",
    "typescript"
  ],
  "contributors": [
    "Dane Springmeyer <dane.springmeyer@gmail.com>",
    "John Gravois <jagravois@gmail.com>",
    "Thomas Hervey <thomasahervey@gmail.com>"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/springmeyer/arc.js.git"
  },
  "license": "BSD",
  "type": "module",
  "exports": {
    "types": "./dist/index.d.ts",
    "default": "./dist/index.js"
  },
  "files": [
    "dist/",
    "src/",
    "README.md",
    "LICENSE.md",
    "CHANGELOG.md"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "npm run clean && tsc",
    "clean": "rm -rf dist/",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "prepublishOnly": "npm run build"
  },
  "devDependencies": {
    "@types/geojson": "^7946.0.16",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.0.0",
    "expect-type": "^1.2.2",
    "jest": "^29.7.0",
    "ts-jest": "^29.4.3",
    "typescript": "^5.0.0"
  }
}
