{
  "name": "@bogeychan/elysia-logger",
  "version": "0.1.10",
  "description": "A plugin for Elysia.js for logging using the pino library",
  "author": {
    "name": "bogeychan",
    "url": "https://github.com/bogeychan",
    "email": "bogeychan@outlook.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/bogeychan/elysia-logger"
  },
  "type": "module",
  "main": "./dist/index.js",
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.js",
      "node": "./dist/index.js",
      "default": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./types": {
      "types": "./dist/types.d.ts"
    }
  },
  "types": "./dist/index.d.ts",
  "scripts": {
    "dev": "bun run --watch examples/basic.ts",
    "test": "bun run test:types && bun test",
    "test:types": "tsc --project tsconfig.test.json",
    "build": "rm -fr dist && tsc --project tsconfig.esm.json",
    "release": "npm run build && npm run test && npm publish --access public"
  },
  "peerDependencies": {
    "elysia": ">= 1.2.10",
    "pino": ">= 9.6.0"
  },
  "devDependencies": {
    "@types/bun": "^1.2.0",
    "elysia": "1.2.10",
    "pino-pretty": "^13.0.0",
    "tsd": "^0.31.2",
    "typescript": "^5.7.3",
    "pino": "^9.6.0"
  },
  "homepage": "https://github.com/bogeychan/elysia-logger",
  "bugs": "https://github.com/bogeychan/elysia-logger/issues",
  "license": "MIT",
  "keywords": [
    "elysia",
    "pino"
  ]
}