{
  "name": "@generacy-ai/generacy",
  "version": "0.8.1",
  "description": "Headless workflow execution CLI for Generacy - run workflows in containers without VS Code",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "bin": {
    "generacy": "./bin/generacy.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./config": {
      "types": "./dist/config/index.d.ts",
      "import": "./dist/config/index.js"
    }
  },
  "keywords": [
    "generacy",
    "workflow",
    "cli",
    "automation",
    "headless"
  ],
  "author": "Generacy AI",
  "license": "Apache-2.0",
  "dependencies": {
    "@clack/prompts": "^0.9",
    "@modelcontextprotocol/sdk": "1.29.0",
    "chalk": "^5",
    "commander": "^12.0.0",
    "diff": "^7",
    "dotenv": "^16.4.0",
    "pino": "^9.0.0",
    "pino-pretty": "^11.0.0",
    "yaml": "^2.4.0",
    "zod": "^3.23.0",
    "@generacy-ai/activation-client": "0.3.0",
    "@generacy-ai/config": "0.4.0",
    "@generacy-ai/orchestrator-types": "0.2.0",
    "@generacy-ai/cockpit": "0.6.0",
    "@generacy-ai/workflow-engine": "0.4.0",
    "@generacy-ai/smee-backoff": "0.2.0",
    "@generacy-ai/orchestrator": "0.11.0"
  },
  "devDependencies": {
    "@types/diff": "^7",
    "@types/node": "^20.14.0",
    "@typescript-eslint/eslint-plugin": "^7.13.0",
    "@typescript-eslint/parser": "^7.13.0",
    "@vitest/coverage-v8": "^4.0.18",
    "ajv": "^8.12.0",
    "ajv-formats": "^3.0.1",
    "eslint": "^8.57.0",
    "typescript": "^5.4.5",
    "vitest": "^4.0.18"
  },
  "engines": {
    "node": ">=22"
  },
  "files": [
    "dist",
    "bin",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/generacy-ai/generacy.git",
    "directory": "packages/generacy"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node bin/generacy.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:integration": "vitest --config ../../vitest.integration.config.ts run",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "clean": "rm -rf dist"
  }
}