{
  "name": "@eyjs/logger",
  "version": "1.0.0",
  "publishConfig": {
    "access": "public"
  },
  "description": "Extensible logging system combining debug with keys and pino for structured logging",
  "keywords": [
    "logger",
    "logging",
    "debug",
    "pino",
    "typescript",
    "structured-logging",
    "debug-keys",
    "performance",
    "development"
  ],
  "main": "index.ts",
  "scripts": {
    "type-check": "tsc --noEmit",
    "type-check:watch": "tsc --noEmit --watch",
    "prepublishOnly": "npm run build",
    "test": "bun test",
    "test:watch": "bun test --watch",
    "lint": "tsc --noEmit",
    "clean": "rm -rf dist",
    "prepack": "npm run clean && npm run build"
  },
  "license": "MIT",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "pino": "^9.0.0",
    "pino-pretty": "^13.0.0",
    "debug": "^4.0.0"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "@types/debug": "^4.1.12",
    "typescript": "^5.0.0"
  }
}