{
  "name": "workers-tagged-logger",
  "version": "1.0.1",
  "private": false,
  "description": "A structured logger for Cloudflare Workers",
  "keywords": [
    "cloudflare workers",
    "logging",
    "cloudflare",
    "workers"
  ],
  "homepage": "https://github.com/jahands/workers-packages/tree/main/npm-pkgs/workers-tagged-logger",
  "bugs": "https://github.com/jahands/workers-packages/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/jahands/workers-packages.git",
    "directory": "npm-pkgs/workers-tagged-logger"
  },
  "license": "MIT",
  "author": {
    "name": "Jacob Hands",
    "url": "https://github.com/jahands"
  },
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "node": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./ts5": {
      "import": {
        "types": "./dist/ts5-decorator.d.ts",
        "default": "./dist/ts5-decorator.js"
      },
      "node": {
        "types": "./dist/ts5-decorator.d.ts",
        "default": "./dist/ts5-decorator.js"
      }
    }
  },
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "dependencies": {
    "zod": "^4.1.12"
  },
  "devDependencies": {
    "@cloudflare/vitest-pool-workers": "0.9.13",
    "@cloudflare/workers-types": "4.20251011.0",
    "@types/node": "22.15.27",
    "pkgroll": "2.12.2",
    "rimraf": "6.0.1",
    "typescript": "5.8.2",
    "vitest": "3.2.4",
    "@repo/eslint-config": "0.2.3",
    "@repo/tools": "0.12.3",
    "@repo/typescript-config": "0.3.10"
  },
  "optionalDependencies": {
    "hono": "^4.6.16"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "runx build tsc ./src/index.ts ./src/ts5-decorator.ts",
    "check:exports": "runx check --exports",
    "check:lint": "run-eslint",
    "check:types": "run-tsc",
    "test": "run-vitest"
  }
}