{
  "name": "nestjs-pretty-logger",
  "version": "0.3.1",
  "description": "Elevate NestJS logging with stylish, file-redirected, and real-time capable logging based on consola. Compact, powerful, and easy to integrate",
  "author": "Innei",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Innei/nestjs-pretty-logger",
    "directory": "Innei/nestjs-pretty-logger"
  },
  "main": "lib/index.js",
  "files": [
    "lib",
    "esm",
    "readme.md",
    "types"
  ],
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "prettier --ignore-path ./.prettierignore --write ",
      "eslint --cache"
    ]
  },
  "bump": {
    "before": [
      "npm run build"
    ],
    "publish": true,
    "changelog": true
  },
  "peerDependencies": {
    "@nestjs/common": ">=10"
  },
  "devDependencies": {
    "@innei/bump-version": "1.5.10",
    "@innei/eslint-config-react-ts": "0.11.1",
    "@innei/eslint-config-ts": "0.11.1",
    "@innei/prettier": "0.12.0",
    "@nestjs/common": "^10.2.10",
    "@types/node": "20.8.10",
    "esbuild": "0.19.5",
    "husky": "8.0.3",
    "lint-staged": "15.0.2",
    "prettier": "3.0.3",
    "tsc-alias": "1.8.8",
    "tslib": "2.6.2",
    "typescript": "5.2.2",
    "vite": "4.5.0",
    "vite-tsconfig-paths": "4.2.1",
    "vitest": "0.34.6"
  },
  "dependencies": {
    "cron": "3.1.6",
    "defu": "^6.1.3",
    "picocolors": "^1.0.0",
    "std-env": "^3.5.0",
    "string-width": "npm:@innei/string-width@7.0.0-fork.1"
  },
  "scripts": {
    "prebuild": "rm -rf lib && rm -rf esm",
    "build": "tsc --build . tsconfig.build.json && tsc --build tsconfig.cjs.json",
    "postbuild": "tsc-alias -p tsconfig.build.json && tsc-alias -p tsconfig.cjs.json && npm run types",
    "types": "rm -rf types && tsc --build tsconfig.types.json && tsc-alias -p tsconfig.types.json",
    "prepackage": "rm -rf dist",
    "test": "vitest",
    "release": "bump",
    "dev": "tsc -w -p tsconfig.cjs.json"
  }
}