{
  "name": "@tsed/logger",
  "description": "A multi channel logger written in TypeScript.",
  "type": "module",
  "version": "8.0.5",
  "author": "Romain Lenzotti",
  "license": "MIT",
  "source": "./src/index.ts",
  "main": "./lib/esm/index.js",
  "module": "./lib/esm/index.js",
  "typings": "./lib/types/index.d.ts",
  "exports": {
    ".": {
      "tsed-source": "./src/index.ts",
      "types": "./lib/types/index.d.ts",
      "import": "./lib/esm/index.js",
      "default": "./lib/esm/index.js"
    },
    "./layouts/*.js": {
      "tsed-source": "./src/layouts/components/*.ts",
      "types": "./lib/types/layouts/components/*.d.ts",
      "import": "./lib/esm/layouts/components/*.js",
      "default": "./lib/esm/layouts/components/*.js"
    },
    "./layouts/*": {
      "tsed-source": "./src/layouts/components/*.ts",
      "types": "./lib/types/layouts/components/*.d.ts",
      "require": "./lib/esm/layouts/components/*.js",
      "import": "./lib/esm/layouts/components/*"
    }
  },
  "scripts": {
    "test": "vitest run",
    "test:ci": "vitest run --coverage.thresholds.autoUpdate=true",
    "build": "yarn barrels && yarn run build:ts",
    "barrels": "barrels && eslint src/**/index.ts --fix",
    "build:ts": "tsc --build tsconfig.esm.json"
  },
  "repository": "https://github.com/tsedio/logger",
  "keywords": [
    "ts",
    "log",
    "debug",
    "typescript",
    "trace"
  ],
  "bugs": {
    "url": "https://github.com/tsedio/logger/issues"
  },
  "homepage": "https://github.com/tsedio/logger/tree/production/packages/logger",
  "dependencies": {
    "colors": "1.4.0",
    "semver": "^7.7.2",
    "tslib": "2.8.1"
  },
  "devDependencies": {
    "@tsed/barrels": "6.6.0",
    "@tsed/typescript": "8.0.5",
    "@tsed/vitest": "8.0.5",
    "typescript": "5.9.2",
    "vite": "7.0.6",
    "vitest": "^3.2.4"
  },
  "peerDependencies": {}
}