{
  "name": "hono-pino-logger",
  "version": "1.0.0",
  "description": "Pino logger middleware for Hono",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "typings": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/maks-herasymov/hono-pino-logger.git"
  },
  "homepage": "https://github.com/maks-herasymov/hono-pino-logger",
  "author": "Maksym Herasymov <maks@hrsy.wtf> (https://github.com/maks-herasymov)",
  "keywords": [
    "hono",
    "pino",
    "logger",
    "middleware"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "dependencies": {
    "pino": "^8.20.0"
  },
  "devDependencies": {
    "hono": "^4.2.3",
    "prettier": "^3.2.5",
    "tsup": "^8.0.2",
    "typescript": "^5.4.5"
  },
  "peerDependencies": {
    "hono": ">=4.*"
  },
  "scripts": {
    "build": "tsup-node && tsc --emitDeclarationOnly",
    "format": "prettier --ignore-path .gitignore --ignore-path .prettierignore --write ."
  }
}