{
  "name": "hono-ip",
  "version": "2.0.2",
  "description": "Tiny and fast middleware for Hono that figures out your client's real IP address",
  "keywords": [
    "hono",
    "ip",
    "middleware",
    "client-ip"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "bun run build.ts",
    "typecheck": "tsc --noEmit",
    "lint": "biome check src",
    "format": "biome format --write src",
    "prepublishOnly": "bun run build"
  },
  "license": "Apache-2.0",
  "author": "orielhaim",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/orielhaim/hono-ip.git"
  },
  "bugs": {
    "url": "https://github.com/orielhaim/hono-ip/issues"
  },
  "homepage": "https://github.com/orielhaim/hono-ip#readme",
  "peerDependencies": {
    "hono": "^4.0.0"
  },
  "dependencies": {
    "forwarded-parse": "^2.1.2",
    "ipaddr.js": "^2.4.0"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.15",
    "@types/bun": "^1.3.14",
    "hono": "^4.12.18",
    "typescript": "^6.0.3"
  }
}
