{
  "name": "hono-geo-middleware",
  "version": "0.1.2",
  "description": "A geo middleware for Hono",
  "type": "module",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md"
  ],
  "keywords": [
    "hono",
    "middleware",
    "geo",
    "hono-middleware"
  ],
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "license": "MIT",
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ktkongtong/hono-geo-middleware.git"
  },
  "homepage": "https://github.com/ktkongtong/hono-geo-middleware",
  "peerDependencies": {
    "hono": "*"
  },
  "devDependencies": {
    "@cloudflare/workers-types": "^4.20231121.0",
    "@netlify/edge-functions": "^2.11.0",
    "hono": "^4.4.12",
    "tsup": "^8.3.5",
    "vitest": "^2.1.4"
  },
  "scripts": {
    "test": "vitest --run",
    "build": "tsup ./src/index.ts --format esm,cjs --dts",
    "release": "pnpm build && pnpm test  && pnpm publish --no-git-checks"
  }
}