{
  "name": "@logickernel/logger",
  "version": "0.17.0",
  "description": "Production-ready Node.js logger with intelligent backend routing and structured logging. Automatically detects GCP environments and routes logs to Google Cloud Logging with proper severities and queryable jsonPayload, or falls back to the local console for development.",
  "keywords": [
    "logger",
    "logging",
    "gcp",
    "google-cloud",
    "google-cloud-logging",
    "structured-logging",
    "cloud-logging",
    "nodejs",
    "typescript",
    "observability",
    "telemetry",
    "log-based-metrics"
  ],
  "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"
    }
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "typecheck": "tsc --noEmit",
    "test": "vitest run src/index.test.ts",
    "prepublishOnly": "npm run build",
    "test:integration": "vitest run src/index.integration.test.ts",
    "test:scenarios": "vitest run src/index.scenarios.test.ts",
    "test:watch": "vitest"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/logickernel/logger.git"
  },
  "homepage": "https://github.com/logickernel/logger#readme",
  "bugs": {
    "url": "https://github.com/logickernel/logger/issues"
  },
  "license": "MIT",
  "dependencies": {
    "@google-cloud/logging": "^11"
  },
  "devDependencies": {
    "tsup": "^8",
    "typescript": "^5",
    "vitest": "^3"
  }
}
