{
  "name": "miyagi-cli",
  "version": "0.3.0",
  "description": "Agent & Skill Trainer for Claude Code — create, battle, and coach AI agents",
  "type": "module",
  "bin": {
    "miyagi": "./dist/bin/miyagi.js"
  },
  "main": "./dist/src/index.js",
  "types": "./dist/src/index.d.ts",
  "files": [
    "dist/",
    "src/builtin-agents/",
    "src/templates/",
    "src/reports/templates/",
    "src/reports/assets/",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "tsup && node scripts/copy-assets.cjs",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:security": "vitest run --grep 'security|traversal|symlink|sanitiz'",
    "lint": "tsc --noEmit",
    "prepublishOnly": "pnpm build",
    "release:patch": "npm version patch && git push --follow-tags",
    "release:minor": "npm version minor && git push --follow-tags",
    "release:major": "npm version major && git push --follow-tags"
  },
  "keywords": [
    "cli",
    "claude",
    "claude-code",
    "ai-agent",
    "agent-training",
    "skills",
    "miyagi",
    "llm"
  ],
  "author": "Gabriel de Jesus Rodrigues",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gabrieldejesusrodrigues/miyagi.git"
  },
  "bugs": {
    "url": "https://github.com/gabrieldejesusrodrigues/miyagi/issues"
  },
  "homepage": "https://github.com/gabrieldejesusrodrigues/miyagi#readme",
  "publishConfig": {
    "provenance": true,
    "access": "public"
  },
  "engines": {
    "node": ">=20"
  },
  "packageManager": "pnpm@10.32.1",
  "peerDependencies": {
    "@anthropic-ai/claude-code": ">=2.0.0"
  },
  "peerDependenciesMeta": {
    "@anthropic-ai/claude-code": {
      "optional": true
    }
  },
  "dependencies": {
    "adm-zip": "^0.5.16",
    "archiver": "^7.0.1",
    "chalk": "^5.6.2",
    "commander": "^14.0.3",
    "handlebars": "^4.7.8",
    "inquirer": "^13.3.2",
    "ora": "^9.3.0",
    "simple-git": "^3.33.0",
    "tar": "^7.5.11"
  },
  "devDependencies": {
    "@types/adm-zip": "^0.5.8",
    "@types/archiver": "^7.0.0",
    "@types/inquirer": "^9.0.9",
    "@types/node": "^25.5.0",
    "@types/tar": "^7.0.87",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^4.1.0"
  }
}
