{
  "name": "goatcode-sh",
  "version": "0.1.9",
  "description": "Enterprise-grade OpenCode plugin with micro-plugin architecture, multi-agent orchestration, and professional naming",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "bin": {
    "goatcode": "./src/cli/index.ts"
  },
  "scripts": {
    "build": "bun build src/index.ts --outdir dist --target bun --format esm --external zod --external @opencode-ai/plugin && tsc --emitDeclarationOnly",
    "typecheck": "tsc --noEmit",
    "test": "bun test './src/features/background-agent/manager.test.ts' && find ./src -name '*.test.ts' ! -path './src/features/background-agent/manager.test.ts' -print0 | xargs -0 bun test",
    "test:integration": "find src -name '*.integration.test.ts' -print0 | xargs -0 bun test",
    "test:coverage": "bun test --coverage src",
    "lint": "oxlint src --deny-warnings",
    "fmt": "oxfmt --write 'src/**/*.ts'",
    "fmt:check": "oxfmt --check 'src/**/*.ts'",
    "test:eval": "cd eval && npx promptfoo eval -c promptfooconfig.yaml",
    "test:ablation": "cd eval && npx promptfoo eval -c ablation-config.yaml",
    "clean": "rm -rf dist",
    "prepare": "git config core.hooksPath .githooks",
    "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"
  },
  "engines": {
    "bun": ">=1.0.0"
  },
  "keywords": [
    "opencode",
    "plugin",
    "agents",
    "orchestration",
    "ai"
  ],
  "author": "",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/ryanskidmore/goatcode"
  },
  "dependencies": {
    "@opencode-ai/plugin": "^1.2.24",
    "@opencode-ai/sdk": "^1.2.24",
    "zod": "^4.1.8",
    "commander": "^14.0.2",
    "picocolors": "^1.1.1"
  },
  "devDependencies": {
    "@types/bun": "^1.3.11",
    "oxfmt": "^0.42.0",
    "oxlint": "^1.57.0",
    "promptfoo": "^0.121.3",
    "typescript": "^5.7.3"
  }
}
