{
  "name": "sagalicious",
  "version": "0.1.1",
  "description": "Orchestration-based Saga pattern implementation for TypeScript. Coordinate distributed transactions across databases, microservices, and APIs with automatic compensation on failure.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint src --ext .ts",
    "format": "prettier --write \"src/**/*.ts\"",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "transactions",
    "saga",
    "saga-pattern",
    "compensating-transactions",
    "distributed-transactions",
    "transaction-orchestration",
    "orchestration",
    "rollback",
    "compensation",
    "atomic",
    "microservices",
    "typescript",
    "command-pattern",
    "coordinator",
    "eventual-consistency",
    "two-phase-commit",
    "database-transactions",
    "api-orchestration",
    "workflow",
    "resilience"
  ],
  "author": "Tom Dorofeyev",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^29.5.2",
    "@types/node": "^20.3.1",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.42.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.0",
    "jest": "^29.5.0",
    "prettier": "^3.0.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.1.3"
  },
  "dependencies": {},
  "repository": {
    "type": "git",
    "url": "https://github.com/tom-dorofeyev/sagalicious.git"
  },
  "bugs": {
    "url": "https://github.com/tom-dorofeyev/sagalicious/issues"
  },
  "homepage": "https://github.com/tom-dorofeyev/sagalicious#readme"
}
