{
  "name": "vibe-assistant",
  "version": "0.3.0",
  "description": "Create and parse PRDs into structured tasks for AI coding agents like Claude Code",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "vibe-assistant": "dist/bin/vibe-assistant.js",
    "vibe-assistant-mcp": "dist/bin/vibe-assistant-mcp.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsx src/bin/vibe-assistant.ts",
    "start": "node dist/bin/vibe-assistant.js",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "prd",
    "ai",
    "claude",
    "claude-code",
    "codex",
    "task-parser",
    "project-planning"
  ],
  "author": "Nick K <vibe-assistant@flybynight.io>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/FlyByNight69420/vibe-assistant.git"
  },
  "homepage": "https://github.com/FlyByNight69420/vibe-assistant#readme",
  "bugs": {
    "url": "https://github.com/FlyByNight69420/vibe-assistant/issues"
  },
  "files": [
    "dist",
    "examples",
    "README.md"
  ],
  "dependencies": {
    "@anthropic-ai/sdk": "^0.39.0",
    "@modelcontextprotocol/sdk": "^1.0.0",
    "chalk": "^5.3.0",
    "commander": "^12.1.0",
    "fs-extra": "^11.2.0",
    "inquirer": "^12.2.0",
    "openai": "^4.77.0",
    "ora": "^8.1.1",
    "zod": "^3.25.0"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^22.10.2",
    "tsx": "^4.19.2",
    "typescript": "^5.7.2",
    "vitest": "^4.0.15"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
