{
  "name": "@livekit/throws-transformer",
  "version": "0.1.8",
  "description": "TypeScript transformer that enforces error handling via branded Throws<T, E> types",
  "main": "dist/plugin.js",
  "types": "dist/plugin.d.ts",
  "type": "commonjs",
  "bin": {
    "throws-check": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/plugin.d.ts",
      "default": "./dist/plugin.js"
    },
    "./transformer": {
      "types": "./dist/transformer.d.ts",
      "default": "./dist/transformer.js"
    },
    "./throws": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./cli": {
      "types": "./dist/cli.d.ts",
      "default": "./dist/cli.js"
    },
    "./promise": {
      "types": "./dist/throws-promise.d.ts",
      "default": "./dist/throws-promise.js"
    }
  },
  "keywords": [
    "typescript",
    "transformer",
    "error-handling",
    "throws",
    "checked-exceptions"
  ],
  "devDependencies": {
    "vitest": "^4.1.0"
  },
  "peerDependencies": {
    "typescript": ">=4.7.0"
  },
  "files": [
    "dist",
    "src"
  ],
  "repository": "git@github.com:livekit/throws-transformer-ts.git",
  "author": "LiveKit <hello@livekit.io>",
  "license": "Apache-2.0",
  "dependencies": {
    "glob": "^13.0.0"
  },
  "scripts": {
    "build": "tsc",
    "check": "pnpx tsx src/cli.ts",
    "check:examples": "pnpx tsx src/cli.ts example/**/*.ts",
    "test": "vitest run src",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "ci:publish": "pnpm build && changeset publish"
  }
}