{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@abinnovision/nestjs-hatchet",
  "version": "0.7.1",
  "description": "NestJS integration for Hatchet workflow orchestration with declarative task and workflow decorators for building distributed job systems.",
  "keywords": [
    "nestjs",
    "hatchet",
    "workflow",
    "orchestration",
    "background-tasks",
    "job-queue",
    "task-scheduling",
    "decorators"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/abinnovision/nestjs-commons.git",
    "directory": "packages/hatchet"
  },
  "license": "Apache-2.0",
  "author": {
    "name": "abi group GmbH",
    "email": "info@abigroup.io",
    "url": "https://abigroup.io"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.cjs"
      }
    },
    "./sdk": {
      "import": {
        "types": "./dist/sdk-export/index.d.ts",
        "default": "./dist/sdk-export/index.mjs"
      },
      "require": {
        "types": "./dist/sdk-export/index.d.ts",
        "default": "./dist/sdk-export/index.cjs"
      }
    }
  },
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "tsdown && tsc --project tsconfig.build.json --emitDeclarationOnly && publint",
    "format:check": "prettier --check '{{src,test}/**/*,*}.{js,jsx,ts,tsx,json,json5,yml,yaml,md}'",
    "format:fix": "prettier --write '{{src,test}/**/*,*}.{js,jsx,ts,tsx,json,json5,yml,yaml,md}'",
    "lint:check": "eslint '{{src,test}/**/*,*}.{js,jsx,ts,tsx}'",
    "lint:fix": "eslint '{{src,test}/**/*,*}.{js,jsx,ts,tsx}' --fix",
    "test-unit": "vitest --run --coverage --config vitest.config.mts",
    "test-unit:watch": "vitest --config vitest.config.mts"
  },
  "lint-staged": {
    "src/**/*.{ts,js}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.{js,ts,json,json5,yaml,yml,md}": [
      "prettier --write"
    ]
  },
  "prettier": "@abinnovision/prettier-config",
  "dependencies": {
    "@hatchet-dev/typescript-sdk": "^1.22.1",
    "@standard-schema/spec": "^1.1.0",
    "directed-graph-typed": "^2.6.0"
  },
  "devDependencies": {
    "@abinnovision/eslint-config-base": "^3.4.1",
    "@abinnovision/prettier-config": "^2.2.0",
    "@swc/core": "^1.15.18",
    "eslint": "^10.3.0",
    "prettier": "^3.8.3",
    "publint": "^0.3.21",
    "reflect-metadata": "^0.2.2",
    "rxjs": "^7.8.2",
    "tsdown": "^0.22.0",
    "typescript": "^5.9.3",
    "unplugin-swc": "^1.5.9",
    "vitest": "^4.1.6",
    "vitest-mock-extended": "^4.0.0",
    "zod": "^4.3.6"
  },
  "peerDependencies": {
    "@nestjs/common": "^11.0.0",
    "@nestjs/core": "^11.0.0"
  },
  "publishConfig": {
    "ghpr": true,
    "npm": true,
    "npmAccess": "public"
  }
}