{
  "name": "workflow-agent-cli",
  "version": "2.23.7",
  "description": "A self-evolving workflow management system for AI agent development",
  "keywords": [
    "workflow",
    "agent",
    "validation",
    "git",
    "conventional-commits",
    "scopes",
    "cli"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hawkinsideOut/workflow-agent.git",
    "directory": "packages/core"
  },
  "license": "MIT",
  "author": "Workflow Agent Team",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./validators": {
      "types": "./dist/validators/index.d.ts",
      "import": "./dist/validators/index.js"
    },
    "./config": {
      "types": "./dist/config/index.d.ts",
      "import": "./dist/config/index.js"
    }
  },
  "bin": {
    "workflow-agent": "./dist/cli/index.js"
  },
  "files": [
    "dist",
    "templates",
    "README.md"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "echo \"ESLint not configured - skipping\"",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "postinstall": "node dist/scripts/postinstall.js || true",
    "prepublishOnly": "pnpm build && pnpm test",
    "workflow": "node dist/cli/index.js",
    "workflow:version": "node dist/cli/index.js --version",
    "workflow:init": "node dist/cli/index.js init",
    "workflow:validate": "node dist/cli/index.js validate",
    "workflow:config": "node dist/cli/index.js config show",
    "workflow:config-show": "node dist/cli/index.js config show",
    "workflow:config-set": "node dist/cli/index.js config set",
    "workflow:suggest": "node dist/cli/index.js suggest",
    "workflow:setup": "node dist/cli/index.js setup",
    "workflow:setup-auto": "node dist/cli/index.js setup auto",
    "workflow:doctor": "node dist/cli/index.js doctor",
    "workflow:scope": "node dist/cli/index.js scope list",
    "workflow:scope-list": "node dist/cli/index.js scope list",
    "workflow:scope-create": "node dist/cli/index.js scope create",
    "workflow:scope-migrate": "node dist/cli/index.js scope migrate",
    "workflow:scope-hooks": "node dist/cli/index.js scope hooks status",
    "workflow:scope-hooks-install": "node dist/cli/index.js scope hooks install",
    "workflow:scope-hooks-uninstall": "node dist/cli/index.js scope hooks uninstall",
    "workflow:scope-hooks-test": "node dist/cli/index.js scope hooks test",
    "workflow:verify": "node dist/cli/index.js verify",
    "workflow:verify-fix": "node dist/cli/index.js verify --fix",
    "workflow:pre-commit": "node dist/cli/index.js pre-commit",
    "workflow:learn": "node dist/cli/index.js learn list",
    "workflow:learn-list": "node dist/cli/index.js learn list",
    "workflow:learn-analyze": "node dist/cli/index.js learn analyze",
    "workflow:learn-capture": "node dist/cli/index.js learn capture",
    "workflow:learn-stats": "node dist/cli/index.js learn stats",
    "workflow:solution": "node dist/cli/index.js solution list",
    "workflow:solution-list": "node dist/cli/index.js solution list",
    "workflow:solution-create": "node dist/cli/index.js solution create",
    "workflow:solution-search": "node dist/cli/index.js solution search",
    "workflow:sync": "node dist/cli/index.js sync",
    "workflow:sync-push": "node dist/cli/index.js sync --push",
    "workflow:sync-pull": "node dist/cli/index.js sync --pull",
    "workflow:docs": "node dist/cli/index.js docs validate",
    "workflow:docs-validate": "node dist/cli/index.js docs validate",
    "workflow:docs-advisory": "node dist/cli/index.js docs advisory"
  },
  "dependencies": {
    "@clack/prompts": "^0.7.0",
    "@hawkinside_out/workflow-improvement-tracker": "^1.5.0",
    "chalk": "^5.3.0",
    "commander": "^11.1.0",
    "cosmiconfig": "^9.0.0",
    "didyoumean2": "^6.0.0",
    "execa": "^8.0.1",
    "fast-glob": "^3.3.2",
    "mustache": "^4.2.0",
    "picocolors": "^1.0.0",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/mustache": "^4.2.5",
    "@types/node": "^20.11.5",
    "eslint": "^8.56.0",
    "memfs": "^4.56.2",
    "tsup": "^8.0.1",
    "typescript": "^5.3.3",
    "vitest": "^1.6.1"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
