{
  "name": "terminal-x-mcp",
  "version": "0.1.0-alpha.1",
  "description": "Multi-agent terminal automation system with command planning, security validation, and real-time monitoring - A Model Context Provider (MCP) server for intelligent terminal management",
  "main": "src/server/index.js",
  "type": "module",
  "scripts": {
    "start": "node src/server/index.js",
    "dev": "node --watch src/server/index.js",
    "test": "node test/terminal-automation-test.js",
    "test:agents": "node test/multi-agent-test.js",
    "test:terminal": "node test/terminal-test.js",
    "test:security": "node test/security-test.js",
    "test:mock": "node -e \"import('./test/mock-test.js').then(m => m.runMockTest())\"",
    "lint": "eslint src/ test/",
    "lint:fix": "eslint src/ test/ --fix",
    "docs": "jsdoc -c jsdoc.conf.json"
  },
  "keywords": [
    "mcp",
    "terminal-automation",
    "multi-agent",
    "command-execution",
    "security-validation",
    "process-monitoring",
    "terminal-management",
    "workflow-automation",
    "model-context-provider",
    "intelligent-automation",
    "command-planning",
    "agent-orchestration",
    "alpha"
  ],
  "author": "RND-PRO Team <https://rnd-pro.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rnd-pro/terminal-x-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/rnd-pro/terminal-x-mcp/issues"
  },
  "homepage": "https://github.com/rnd-pro/terminal-x-mcp#readme",
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0",
    "shelljs": "^0.8.5",
    "ps-tree": "^1.2.0"
  },
  "devDependencies": {
    "eslint": "^8.57.0",
    "jsdoc": "^4.0.2"
  },
  "engines": {
    "node": ">=18.0.0",
    "npm": ">=8.0.0"
  },
  "files": [
    "src/",
    "test/",
    "examples/",
    "docs/",
    "README.md",
    "LICENSE"
  ],
  "bin": {
    "terminal-x-mcp": "./src/server/index.js"
  }
} 