{
  "name": "logaro",
  "version": "1.0.0",
  "description": "Structured logging middleware for Express. Tracks request timing, IP, status, method, and endpoint. Supports colorized console and JSON log files.",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hmzatayab/logaro.git"
  },
  "homepage": "https://github.com/hmzatayab",
  "scripts": {
    "test": "jest",
    "build": "tsc"
  },
  "keywords": [
    "express",
    "logger",
    "middleware",
    "winston",
    "logging",
    "monitoring",
    "request-timing",
    "nodejs",
    "typescript"
  ],
  "author": "Hamza Tayyab",
  "license": "ISC",
  "dependencies": {
    "winston": "^3.13.0"
  },
  "peerDependencies": {
    "express": ">=4.0.0"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/jest": "^30.0.0",
    "@types/node": "^20.14.9",
    "@types/supertest": "^6.0.3",
    "jest": "^30.2.0",
    "supertest": "^7.1.4",
    "ts-jest": "^29.4.6",
    "typescript": "^5.5.3"
  },
  "files": [
    "dist"
  ]
}
