{
  "name": "@io-orkes/conductor-javascript",
  "description": "Typescript SDK for Netflix Conductor",
  "version": "v3.0.2",
  "private": false,
  "homepage": "https://orkes.io",
  "repository": {
    "type": "git",
    "url": "https://github.com/conductor-oss/javascript-sdk"
  },
  "keywords": [
    "conductor",
    "workflow",
    "orchestration",
    "microservice"
  ],
  "author": "Conductor community",
  "license": "Apache-2.0",
  "contributors": [
    {
      "name": "Black Diamond"
    },
    {
      "name": "Nick Tomlin"
    },
    {
      "name": "James Stuart Milne"
    }
  ],
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.mjs"
    }
  },
  "main": "dist/index.js",
  "scripts": {
    "lint": "npx eslint .",
    "lint-fix": "npx eslint . --fix",
    "test": "cross-env ORKES_BACKEND_VERSION=5 jest --force-exit --detectOpenHandles",
    "test:unit": "jest --force-exit --detectOpenHandles --testMatch='**/src/**/__tests__/**/*.test.[jt]s?(x)'",
    "test:integration:base": "jest --force-exit --detectOpenHandles --testMatch='**/src/integration-tests/*.test.[jt]s?(x)'",
    "test:integration:v5": "cross-env ORKES_BACKEND_VERSION=5 npm run test:integration:base --",
    "test:integration:v4": "cross-env ORKES_BACKEND_VERSION=4 npm run test:integration:base --",
    "test:integration:v5:batch": "cross-env ORKES_BACKEND_VERSION=5 node scripts/run-integration-batch.mjs",
    "test:integration:v4:batch": "cross-env ORKES_BACKEND_VERSION=4 node scripts/run-integration-batch.mjs",
    "ci": "npm run lint && npm run test",
    "build": "tsup index.ts",
    "generate-openapi-layer": "openapi-ts",
    "generate-docs": "typedoc --plugin typedoc-plugin-markdown",
    "prepublishOnly": "npm run build"
  },
  "devDependencies": {
    "@eslint/js": "^9.34.0",
    "@hey-api/openapi-ts": "^0.85.2",
    "@tsconfig/node18": "^18.2.4",
    "@types/node": "^22.0.0",
    "@types/uuid": "^9.0.1",
    "cross-env": "^10.1.0",
    "dotenv": "^16.0.1",
    "eslint": "^9.34.0",
    "jest": "^30.1.3",
    "jest-junit": "^16.0.0",
    "prom-client": "^15.1.3",
    "ts-jest": "^29.4.2",
    "tsup": "^8.5.0",
    "typedoc": "^0.28.11",
    "typescript": "^5.9.2",
    "typescript-eslint": "^8.41.0",
    "uuid": "^9.0.0"
  },
  "optionalDependencies": {
    "undici": "^7.16.0"
  },
  "tsup": {
    "target": "node18",
    "sourcemap": true,
    "format": [
      "esm",
      "cjs"
    ],
    "dts": true,
    "clean": true,
    "splitting": false
  },
  "jest-junit": {
    "outputDirectory": "reports",
    "outputName": "jest-junit.xml",
    "ancestorSeparator": " > ",
    "uniqueOutputName": "false",
    "suiteNameTemplate": "{filepath}",
    "classNameTemplate": "{classname}",
    "titleTemplate": "{title}"
  },
  "dependencies": {
    "reflect-metadata": "^0.2.2"
  }
}
