{
  "name": "@happyvertical/logger",
  "version": "0.88.0",
  "description": "Structured logging for HAVE SDK with signal adapter",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./sentry": {
      "import": "./dist/sentry.js",
      "types": "./dist/sentry.d.ts"
    }
  },
  "peerDependencies": {
    "@sentry/node": ">=10.49.0"
  },
  "peerDependenciesMeta": {
    "@sentry/node": {
      "optional": true
    }
  },
  "bin": {
    "have-logger-context": "./dist/cli/claude-context.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "AGENT.md",
    "metadata.json"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "dependencies": {
    "@happyvertical/utils": "0.88.0"
  },
  "devDependencies": {
    "@sentry/node": "^10.49.0",
    "@types/node": "25.0.10",
    "typescript": "5.9.3",
    "vite": "8.1.4",
    "vitest": "4.1.10"
  },
  "keywords": [
    "logging",
    "structured-logging",
    "signals",
    "observability",
    "have-sdk"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/happyvertical/sdk.git",
    "directory": "packages/logger"
  },
  "bugs": {
    "url": "https://github.com/happyvertical/sdk/issues"
  },
  "homepage": "https://github.com/happyvertical/sdk/tree/main/packages/logger#readme",
  "license": "MIT",
  "scripts": {
    "build": "vite build",
    "dev": "vite build --watch",
    "test": "vitest --config ../../vitest.package.config.ts run",
    "test:watch": "vitest --config ../../vitest.package.config.ts",
    "typecheck": "tsc --noEmit"
  }
}