{
  "name": "@jmkim85/dev-flow-mcp",
  "version": "2.4.0",
  "description": "MCP-based Dev Flow - AI-powered development workflow management with 13 essential tools for TDD and context management",
  "type": "module",
  "main": "dist/server.js",
  "bin": {
    "devflow": "./dist/cli.js",
    "dev-flow-mcp": "./dist/server.js"
  },
  "files": [
    "dist/**/*",
    "templates/**/*",
    "examples/**/*",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "start": "node dist/server.js",
    "test": "node tests/integration-test.js",
    "test:jest": "jest",
    "update-version-docs": "npx tsx scripts/update-version-placeholders.ts",
    "validate-version": "npx tsx scripts/update-version-placeholders.ts --validate",
    "test-version": "node tests/version-management-test.js",
    "prepublishOnly": "npm run build",
    "build:binaries": "npm run build && pkg . --out-path binaries",
    "build:docker": "docker build -t devflow/mcp-server:latest .",
    "package": "npm run build && npm pack"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0",
    "chalk": "^5.3.0",
    "commander": "^11.1.0",
    "execa": "^8.0.1",
    "fs-extra": "^11.2.0",
    "glob": "^10.3.10",
    "table": "^6.8.1",
    "yaml": "^2.3.4"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/jest": "^29.5.8",
    "@types/node": "^20.10.0",
    "jest": "^29.7.0",
    "pkg": "^5.8.1",
    "typescript": "^5.3.0"
  },
  "keywords": [
    "mcp",
    "ai",
    "development",
    "workflow",
    "tdd",
    "automation",
    "llm",
    "agent",
    "claude",
    "context-management",
    "test-driven-development",
    "model-context-protocol"
  ],
  "author": "Dev Flow Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/jmkim-clt/mcp-dev-flow.git"
  },
  "homepage": "https://github.com/jmkim-clt/mcp-dev-flow#readme",
  "bugs": {
    "url": "https://github.com/jmkim-clt/mcp-dev-flow/issues"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "pkg": {
    "scripts": [
      "dist/**/*.js"
    ],
    "assets": [
      "templates/**/*",
      "examples/**/*"
    ],
    "targets": [
      "node18-win-x64",
      "node18-macos-x64",
      "node18-linux-x64"
    ],
    "outputPath": "binaries"
  }
}
