{
  "name": "@orchestr8/resilience",
  "version": "1.0.2",
  "description": "Resilience patterns (retry, circuit breaker, timeout) with composition support for @orchestr8",
  "keywords": [
    "orchestr8",
    "resilience",
    "retry",
    "circuit-breaker",
    "timeout",
    "composition"
  ],
  "author": "Nathan Vale <nathanvale@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nathanvale/orchestr8.git",
    "directory": "packages/resilience"
  },
  "homepage": "https://github.com/nathanvale/orchestr8/tree/main/packages/resilience",
  "bugs": {
    "url": "https://github.com/nathanvale/orchestr8/issues"
  },
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md"
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "default": "./dist/esm/index.js"
    }
  },
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:types",
    "build:clean": "rimraf dist *.tsbuildinfo",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
    "build:types": "tsc -p tsconfig.types.json",
    "dev": "tsc --watch",
    "test": "vitest",
    "test:ci": "vitest --run",
    "benchmark": "tsx src/benchmark.ts",
    "lint": "eslint src --max-warnings 0",
    "type-check": "tsc --noEmit",
    "format:check": "prettier --check src",
    "clean": "rimraf dist *.tsbuildinfo",
    "prepublishOnly": "node ../../scripts/prepare-publish.cjs clean",
    "postpublish": "node ../../scripts/prepare-publish.cjs restore",
    "lint:fix": "eslint src --fix --max-warnings 0"
  },
  "dependencies": {
    "@orchestr8/logger": "workspace:*",
    "@orchestr8/schema": "workspace:*",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@orchestr8/testing": "workspace:*",
    "@types/node": "^22.5.5",
    "tsx": "^4.20.4",
    "typescript": "^5.8.3",
    "vitest": "^3.2.4"
  }
}
