{
  "name": "agentx-mcp",
  "version": "2.0.1",
  "description": "Local-first agent factory MCP Server for Claude Code with enhanced features",
  "type": "module",
  "bin": {
    "agentx-mcp": "./dist/index.js",
    "agentx": "./dist/cli.js"
  },
  "main": "dist/index.js",
  "files": [
    "dist/",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsc",
    "build:enhanced": "tsc",
    "start": "node dist/index.js",
    "start:enhanced": "set AGENTX_ENHANCED=true && node dist/index.js",
    "test": "vitest run",
    "test:enhanced": "vitest run --config vitest.enhanced.config.ts",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src/ tests/ --ext .ts",
    "prepublishOnly": "npm run build && npm run typecheck && npm test",
    "dev": "tsx watch src/index.ts",
    "dev:enhanced": "set AGENTX_ENHANCED=true && tsx watch src/index.ts",
    "web": "tsx src/web/server.ts"
  },
  "keywords": [
    "mcp",
    "claude",
    "agent",
    "cli",
    "ai",
    "workflow",
    "automation"
  ],
  "author": "AgentX Team",
  "license": "ISC",
  "dependencies": {
    "@inquirer/prompts": "^8.4.2",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "archiver": "^7.0.1",
    "better-sqlite3": "^12.9.0",
    "chalk": "^5.6.2",
    "cli-table3": "^0.6.5",
    "commander": "^14.0.3",
    "js-yaml": "^4.1.1",
    "lru-cache": "^11.3.5",
    "uuid": "^14.0.0",
    "zod": "^4.3.6",
    "axios": "^1.16.0",
    "express": "^5.2.1"
  },
  "devDependencies": {
    "@types/archiver": "^7.0.0",
    "@types/better-sqlite3": "^7.6.13",
    "@types/express": "^5.0.6",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^25.6.2",
    "@types/uuid": "^10.0.0",
    "@typescript-eslint/eslint-plugin": "^8.59.1",
    "@typescript-eslint/parser": "^8.59.1",
    "eslint": "^10.2.1",
    "tsx": "^4.21.0",
    "typescript": "^6.0.3",
    "vitest": "^4.1.5"
  }
}
