{
  "name": "tsrml612",
  "version": "1.14.0",
  "description": "Tiny TypeScript library for structured logging and health checks.",
  "keywords": [
    "health",
    "healthcheck",
    "log",
    "telemetry",
    "typescript"
  ],
  "license": "MIT",
  "author": "kleobe65",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kleobe65/tsrml.git"
  },
  "homepage": "https://github.com/kleobe65/tsrml#readme",
  "bugs": {
    "url": "https://github.com/kleobe65/tsrml/issues"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "!dist/**/*.map"
  ],
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup && npm run build:types",
    "build:types": "tsc -p tsconfig.build.json",
    "build:protected": "npm run build && node scripts/obfuscate.mjs",
    "clean": "rm -rf dist",
    "dev": "tsup --watch",
    "encrypt:uri": "tsx scripts/encrypt-uri.mjs",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run typecheck && npm run test && npm run build:protected"
  },
  "devDependencies": {
    "@types/node": "^26.2.0",
    "javascript-obfuscator": "^5.5.1",
    "tsup": "^8.5.1",
    "tsx": "^4.23.12",
    "typescript": "^7.0.2",
    "vitest": "^4.1.11"
  },
  "dependencies": {
    "mongodb": "^7.5.0"
  }
}
