{
  "name": "nexus-agents",
  "version": "2.165.0",
  "description": "Governance substrate for AI coding agents — adversarial PR review, drift-detected rules, tamper-evident audit, and closed-loop outcome routing for Claude, Codex, Gemini, and OpenCode",
  "mcpName": "io.github.nexus-substrate/nexus-agents",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "nexus-agents": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "scripts/postinstall.js",
    "src/workflows/templates",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nexus-substrate/nexus-agents.git"
  },
  "homepage": "https://github.com/nexus-substrate/nexus-agents#readme",
  "bugs": {
    "url": "https://github.com/nexus-substrate/nexus-agents/issues"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "ai",
    "agents",
    "multi-agent",
    "governance",
    "code-review",
    "consensus",
    "audit",
    "orchestration",
    "claude",
    "codex",
    "openai",
    "gemini",
    "opencode",
    "ollama",
    "llm",
    "workflow"
  ],
  "author": "William Zujkowski",
  "engines": {
    "node": ">=22.0.0"
  },
  "optionalDependencies": {
    "@atproto/api": "^0.20.25"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.110.0",
    "@google/genai": "^1.52.0",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "better-sqlite3": "^12.11.1",
    "jsonc-parser": "^3.3.1",
    "ollama": "^0.6.3",
    "openai": "^6.45.0",
    "semver": "^7.8.5",
    "tiktoken": "^1.0.22",
    "ts-morph": "^27.0.2",
    "typescript": "^6.0.3",
    "yaml": "^2.9.0",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@ai-sdk/anthropic": "^3.0.92",
    "@ai-sdk/google": "^3.0.88",
    "@ai-sdk/openai": "^3.0.80",
    "@types/better-sqlite3": "^7.6.13",
    "@types/semver": "^7.7.1",
    "@vitest/coverage-v8": "4.1.9",
    "ai": "^6.0.219",
    "fast-check": "^4.8.0",
    "tsup": "^8.5.1",
    "typedoc": "0.28.19",
    "typedoc-plugin-frontmatter": "1.3.1",
    "typedoc-plugin-markdown": "4.12.0",
    "vitest": "4.1.9",
    "nexus-memory": "0.1.4"
  },
  "peerDependencies": {
    "@ai-sdk/anthropic": "^3.0.0",
    "@ai-sdk/google": "^3.0.0",
    "@ai-sdk/openai": "^3.0.0",
    "ai": "^6.0.0"
  },
  "peerDependenciesMeta": {
    "ai": {
      "optional": true
    },
    "@ai-sdk/anthropic": {
      "optional": true
    },
    "@ai-sdk/openai": {
      "optional": true
    },
    "@ai-sdk/google": {
      "optional": true
    }
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:e2e": "vitest run --config vitest.config.e2e.ts",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src/",
    "lint:fix": "eslint src/ --fix",
    "typecheck": "tsc --noEmit",
    "docs": "typedoc",
    "docs:watch": "typedoc --watch",
    "docs:api:md": "typedoc --options typedoc.markdown.json",
    "postinstall": "node scripts/postinstall.js || true"
  }
}