{
  "name": "@bernierllc/logger",
  "version": "1.7.1",
  "description": "Structured logging with multiple transports, log levels, and correlation tracking for BernierLLC ecosystem",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*",
    "templates",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "logging",
    "structured-logging",
    "correlation",
    "performance",
    "transports",
    "sanitization",
    "neverhub",
    "bernierllc"
  ],
  "author": "Bernier LLC",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/bernier-llc/tools"
  },
  "dependencies": {
    "cosmiconfig": "^8.3.6",
    "dotenv-flow": "^4.1.0",
    "zod": "^3.22.4",
    "@bernierllc/neverhub-adapter": "0.4.1"
  },
  "devDependencies": {
    "@types/dotenv-flow": "^3.3.3",
    "@types/jest": "^29.5.14",
    "@types/node": "^20.0.0",
    "eslint": "^8.0.0",
    "jest": "^29.5.0",
    "rimraf": "^5.0.0",
    "ts-jest": "^29.4.0",
    "typescript": "^5.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:run": "jest --passWithNoTests",
    "lint": "eslint src/**/*.ts",
    "clean": "rimraf dist",
    "config:init": "node scripts/config-init.js",
    "config:validate": "node scripts/config-validate.js",
    "config:print": "node scripts/config-print.js"
  }
}