{
  "name": "logging",
  "version": "4.2.0",
  "description": "Lightweight informative modern console logging.",
  "type": "module",
  "main": "lib/index.js",
  "exports": {
    ".": {
      "default": "./lib/index.js",
      "browser": "./lib/browser.js"
    }
  },
  "files": [
    "lib",
    "index.d.ts"
  ],
  "repository": "https://github.com/dylang/logging",
  "author": "Dylan Greene <dylang@gmail.com>",
  "license": "MIT",
  "dependencies": {
    "chalk": "^5.4.1",
    "debug": "^4.4.1",
    "nicely-format": "^1.1.0"
  },
  "devDependencies": {
    "@biomejs/biome": "1.7.0",
    "@rollup/plugin-commonjs": "^28.0.3",
    "@rollup/plugin-node-resolve": "^16.0.1",
    "@rollup/plugin-typescript": "^12.1.2",
    "@types/debug": "^4.1.12",
    "@types/sinon": "^17.0.4",
    "mockdate": "^3.0.5",
    "rollup": "^4.42.0",
    "sinon": "^20.0.0",
    "ts-node": "^10.9.2",
    "tslib": "^2.8.1",
    "typescript": "^5.8.3",
    "vitest": "^3.2.2"
  },
  "engines": {
    "node": ">= 20"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "scripts": {
    "start": "node lib/index.js",
    "test": "vitest run && pnpm example",
    "test:watch": "vitest",
    "format": "biome format --write .",
    "check": "biome check .",
    "lint": "biome check --apply .",
    "typecheck": "tsc --noEmit",
    "build": "tsc -p tsconfig.build.json",
    "example": "node lib/index.js",
    "prepublish": "pnpm typecheck && pnpm build"
  }
}