{
  "name": "agmux",
  "version": "0.0.7",
  "description": "A local, terminal-based orchestration interface for managing, running, and observing multiple AI agents concurrently",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "agmux": "./dist/index.js"
  },
  "scripts": {
    "build": "tsc && mkdir -p dist/db && cp src/db/schema.sql dist/db/schema.sql && cp src/agmux_logo dist/agmux_logo",
    "dev": "tsx src/index.tsx",
    "start": "node dist/index.js",
    "test": "vitest",
    "test:unit": "vitest run --dir src",
    "test:e2e": "vitest run --dir e2e",
    "test:watch": "vitest watch",
    "test:coverage": "vitest run --coverage",
    "test:setup": "tsx scripts/test-setup.ts",
    "lint": "eslint src --ext .ts,.tsx",
    "typecheck": "tsc --noEmit"
  },
  "keywords": [
    "agmux",
    "cli",
    "tui",
    "terminal-ui",
    "terminal-interface",
    "ai",
    "artificial-intelligence",
    "agents",
    "ai-agents",
    "multi-agent",
    "agent-orchestration",
    "agent-orchestrator",
    "orchestration",
    "mcp",
    "model-context-protocol",
    "claude",
    "cursor",
    "task-management",
    "workflow",
    "automation",
    "ai-assistant",
    "ai-toolkit",
    "concurrent-agents",
    "agent-management"
  ],
  "author": "",
  "license": "Apache-2.0",
  "dependencies": {
    "@anthropic-ai/sdk": "^0.71.2",
    "@inkjs/ui": "^2.0.0",
    "@modelcontextprotocol/sdk": "^1.0.4",
    "better-sqlite3": "^11.3.0",
    "express": "^4.18.2",
    "fullscreen-ink": "^0.1.0",
    "ink": "^6.6.0",
    "node-pty": "^1.1.0",
    "react": "^19.0.0"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.11",
    "@types/express": "^4.17.21",
    "@types/node": "^20.14.10",
    "@types/react": "^19.0.0",
    "@typescript-eslint/eslint-plugin": "^7.13.1",
    "@typescript-eslint/parser": "^7.13.1",
    "@vitest/coverage-v8": "^1.6.0",
    "eslint": "^8.57.0",
    "ink-testing-library": "^2.1.0",
    "tsx": "^4.16.2",
    "typescript": "^5.5.4",
    "vitest": "^1.6.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist",
    "docs"
  ]
}
