{
  "name": "@su-record/vibe",
  "version": "3.1.0",
  "description": "AI Coding Framework for Claude Code — 10+ agents, 59 skills, multi-LLM orchestration",
  "type": "module",
  "main": "dist/cli/index.js",
  "exports": {
    ".": "./dist/cli/index.js",
    "./tools": "./dist/tools/index.js",
    "./tools/memory": "./dist/tools/memory/index.js",
    "./tools/convention": "./dist/tools/convention/index.js",
    "./tools/ui": "./dist/tools/ui/index.js",
    "./tools/time": "./dist/tools/time/index.js",
    "./tools/interaction": "./dist/tools/interaction/index.js",
    "./memory": {
      "types": "./dist/infra/lib/memory/index.d.ts",
      "default": "./dist/infra/lib/memory/index.js"
    }
  },
  "bin": {
    "vibe": "dist/cli/index.js"
  },
  "scripts": {
    "build": "tsc && chmod +x dist/cli/index.js",
    "dev": "tsc --watch",
    "gen:skill-docs": "npx tsx scripts/gen-skill-docs.ts",
    "gen:skill-docs:check": "npx tsx scripts/gen-skill-docs.ts --check",
    "sync:agent-models": "npx tsx scripts/sync-agent-models.ts",
    "sync:agent-models:check": "npx tsx scripts/sync-agent-models.ts --check",
    "validate:skill-invocation": "npx tsx scripts/validate-skill-invocation.ts",
    "validate:counts": "npx tsx scripts/validate-counts.ts",
    "test": "vitest run",
    "test:watch": "vitest",
    "prepublishOnly": "pnpm build",
    "postinstall": "node -e \"import('./dist/cli/postinstall/main.js').then(m=>m.main()).catch(()=>{})\"",
    "release": "pnpm version patch && git push origin main --follow-tags"
  },
  "keywords": [
    "ai",
    "core",
    "coding",
    "spec-driven",
    "claude",
    "agent",
    "requirements",
    "user-story",
    "ultrawork",
    "parallel-agents",
    "memory-management",
    "knowledge-graph",
    "code-analysis",
    "code-quality",
    "harness"
  ],
  "author": "Su",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/su-record/vibe.git"
  },
  "bugs": {
    "url": "https://github.com/su-record/vibe/issues"
  },
  "homepage": "https://github.com/su-record/vibe#readme",
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "optionalDependencies": {
    "@anthropic-ai/claude-agent-sdk": "^0.2.6",
    "@ast-grep/napi": "^0.40.5"
  },
  "dependencies": {
    "@clack/prompts": "^1.0.0",
    "better-sqlite3": "^12.9.0",
    "chalk": "^5.3.0",
    "glob": "^13.0.1",
    "papaparse": "^5.5.3",
    "ts-morph": "^26.0.0",
    "uuidv7": "^1.1.0",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^22.0.0",
    "@types/papaparse": "^5.5.2",
    "ajv": "^8.17.1",
    "typescript": "^5.5.4",
    "vitest": "^4.0.9"
  },
  "files": [
    "dist/",
    "vibe/",
    "languages/",
    "commands/",
    "agents/",
    "skills/",
    "hooks/",
    ".env.example",
    "CLAUDE.md",
    "README.md",
    "LICENSE"
  ],
  "pnpm": {
    "onlyBuiltDependencies": [
      "better-sqlite3"
    ]
  }
}
