{
  "name": "osm-api",
  "version": "4.0.0",
  "contributors": [
    "Kyle Hensel (https://github.com/k-yle)"
  ],
  "description": "🗺️🌏 Javascript/Typescript wrapper around the OpenStreetMap API",
  "main": "dist",
  "unpkg": "dist/index.min.js",
  "types": "dist/src/index.d.ts",
  "license": "MIT",
  "files": [
    "dist"
  ],
  "keywords": [
    "osm",
    "openstreetmap",
    "openstreetmap api"
  ],
  "repository": "https://github.com/osmlab/osm-api-js",
  "scripts": {
    "build": "rm -rf dist && tsc --emitDeclarationOnly && rm -rf dist/__tests__ && browserify -s OSM src/index.ts -p tsify > dist/index.js && uglifyjs dist/index.js > dist/index.min.js",
    "lint": "eslint .",
    "test": "vitest",
    "trypublish": "npm publish --provenance || true"
  },
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "@types/geojson": "^7946.0.13",
    "fast-xml-parser": "^4.4.1"
  },
  "devDependencies": {
    "@types/node": "^22.5.5",
    "browserify": "^17.0.0",
    "eslint": "^9.10.0",
    "eslint-config-kyle": "^25.0.0-beta3",
    "tsify": "^5.0.4",
    "typescript": "^5.6.2",
    "uglify-js": "^3.19.3",
    "vitest": "^2.1.1"
  },
  "prettier": {
    "trailingComma": "es5"
  }
}
