{
  "name": "osm-auth",
  "version": "3.2.0",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/osmlab/osm-auth.git"
  },
  "description": "A usable example of JavaScript OAuth 2.0 with OpenStreetMap",
  "keywords": [
    "oauth",
    "openstreetmap",
    "ohauth"
  ],
  "contributors": [
    "Bryan Housel  <bhousel@gmail.com> (https://github.com/bhousel)",
    "Daniel Schep (https://github.com/dschep)",
    "Hel Nershing Thapa (https://github.com/HelNershingThapa)",
    "Tom MacWright <tom@macwright.org> (https://github.com/tmcw)"
  ],
  "files": [
    "dist/",
    "src/"
  ],
  "type": "module",
  "exports": {
    "bun": "./src/osm-auth.mjs",
    "types": "./src/osm-auth.d.ts",
    "import": "./dist/osm-auth.mjs",
    "require": "./dist/osm-auth.cjs",
    "browser": "./dist/osm-auth.iife.js"
  },
  "scripts": {
    "all": "bun run --sequential clean lint build:js test",
    "build:js": "bun ./scripts/build_js.ts",
    "clean": "bun ./scripts/clean.ts",
    "lint": "eslint ./src/osm-auth.mjs ./test/*.js",
    "start": "bun ./scripts/server.ts",
    "test": "bun test --dots --coverage ./test/*.js"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/bun": "^1.3.11",
    "eslint": "^10.1.0",
    "globals": "^17.4.0",
    "node-localstorage": "^3.0.5",
    "typescript": "^5.9.3"
  },
  "engines": {
    "bun": ">=1.3.10"
  }
}
