{
  "name": "opencode-review-helper",
  "version": "0.3.1",
  "description": "OpenCode plugin for reviewing AI-generated code changes - suggests review order and analyzes impact",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "opencode-review-helper": "dist/cli.js"
  },
  "files": [
    "dist",
    "schema.json"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "prepublishOnly": "npm run build",
    "typecheck": "tsc --noEmit",
    "release:patch": "npm version patch && git push && git push --tags && npm publish --access public",
    "release:minor": "npm version minor && git push && git push --tags && npm publish --access public",
    "release:major": "npm version major && git push && git push --tags && npm publish --access public"
  },
  "dependencies": {
    "@opencode-ai/plugin": "^1.0.209",
    "tiny-jsonc": "^1.0.2",
    "zod": "^4.1.8"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "typescript": "^5.0.0"
  },
  "keywords": [
    "opencode",
    "plugin",
    "code-review",
    "ai",
    "impact-analysis"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/shamashel/opencode-review-helper.git"
  },
  "author": "shamashel",
  "license": "MIT",
  "engines": {
    "node": ">=18.0.0"
  }
}
