{
  "name": "rw-uc",
  "version": "0.6.1",
  "description": "Ralph Wiggum - Use Case to Command Framework",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "rw-uc": "./dist/cli/index.js",
    "rw-uc-run": "./scripts/run-with-claude.sh",
    "rw-uc-task": "./scripts/ralph-loop-task.sh",
    "rw-uc-prompts": "./scripts/extract-prompts.sh"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./core": {
      "types": "./dist/core/index.d.ts",
      "import": "./dist/core/index.js"
    },
    "./mcp": {
      "types": "./dist/mcp/index.d.ts",
      "import": "./dist/mcp/index.js"
    }
  },
  "files": [
    "dist",
    "templates",
    "config",
    "scripts"
  ],
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "dev": "tsx watch src/cli/index.ts",
    "start": "node dist/cli/index.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src tests --ext .ts",
    "lint:fix": "eslint src tests --ext .ts --fix",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "ralph-wiggum",
    "ai-development",
    "automation",
    "code-generation",
    "llm",
    "cli",
    "mcp",
    "user-stories",
    "epic",
    "agile",
    "task-decomposition",
    "claude",
    "ai-assisted-development",
    "execution-plan"
  ],
  "author": "Josmar Oliveira",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/josmar-oliveira/rwuc.git"
  },
  "bugs": {
    "url": "https://github.com/josmar-oliveira/rwuc/issues"
  },
  "homepage": "https://github.com/josmar-oliveira/rwuc#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.25.3",
    "chalk": "^5.3.0",
    "cli-table3": "^0.6.5",
    "commander": "^12.1.0",
    "handlebars": "^4.7.8",
    "inquirer": "^9.2.23",
    "ora": "^8.0.1",
    "simple-git": "^3.25.0",
    "yaml": "^2.4.5",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/inquirer": "^9.0.7",
    "@types/node": "^20.14.10",
    "@typescript-eslint/eslint-plugin": "^7.16.0",
    "@typescript-eslint/parser": "^7.16.0",
    "@vitest/coverage-v8": "^1.6.0",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-import": "^2.29.1",
    "prettier": "^3.3.2",
    "tsx": "^4.16.2",
    "typescript": "^5.5.3",
    "vitest": "^1.6.0"
  }
}
