{
  "name": "@cogitator-ai/workflows",
  "version": "0.5.17",
  "description": "DAG-based workflow engine for Cogitator agents",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "cron-parser": "^4.9.0",
    "nanoid": "^5.0.4",
    "@cogitator-ai/core": "0.19.4",
    "@cogitator-ai/types": "0.22.3"
  },
  "devDependencies": {
    "@types/node": "^25.0.10",
    "typescript": "^5.3.0",
    "vitest": "^4.0.18"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/cogitator-ai/Cogitator-AI.git",
    "directory": "packages/workflows"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://npm.pkg.github.com"
  },
  "license": "MIT",
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest"
  }
}