{
  "name": "hivemind-3.0",
  "version": "0.1.0",
  "description": "HiveMind — Runtime composition engine for multi-agent orchestration, session continuity, and compounding intelligence in OpenCode",
  "type": "module",
  "main": "./dist/index.js",
  "bin": {
    "hivemind": "./bin/hivemind.cjs"
  },
  "files": [
    "dist",
    "!dist/**/*.map",
    "bin",
    "assets/agent-instructions",
    "assets/agents",
    "assets/commands",
    "assets/plugins",
    "assets/references",
    "assets/rules",
    "assets/skills",
    "assets/templates",
    "assets/workflows",
    "scripts",
    ".hivemind/configs.schema.json"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./plugin": {
      "import": "./dist/plugin.js",
      "types": "./dist/plugin.d.ts"
    },
    "./cli": {
      "import": "./dist/cli/index.js",
      "types": "./dist/cli/index.d.ts"
    }
  },
  "scripts": {
    "clean": "node --eval \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true });\"",
    "build": "npm run clean && node scripts/sync-assets.js && tsc && node dist/schema-kernel/generate-config-json-schema.js",
    "postinstall": "node scripts/sync-assets.js --mode=install",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "prepack": "npm run build"
  },
  "dependencies": {
    "@ai-sdk/openai-compatible": "^2.0.47",
    "@clack/prompts": "^1.4.0",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "@opencode-ai/sdk": "^1.15.13",
    "eslint": "^10.4.1",
    "gray-matter": "^4.0.3",
    "proper-lockfile": "^4.1.2",
    "yaml": "^2.9.0",
    "zod": "^4.4.3"
  },
  "peerDependencies": {
    "@opencode-ai/plugin": "^1.15.13"
  },
  "devDependencies": {
    "@opencode-ai/plugin": "^1.15.13",
    "@types/bun": "^1.3.8",
    "@types/node": "^20.0.0",
    "@vitest/coverage-v8": "^4.1.7",
    "bats": "^1.13.0",
    "bun-types": "^1.3.14",
    "typescript": "^5.0.0",
    "vitest": "^4.1.7"
  },
  "optionalDependencies": {
    "@json-render/core": "^0.19.0",
    "@json-render/ink": "^0.19.0",
    "@json-render/next": "^0.19.0",
    "@json-render/react": "^0.19.0",
    "@json-render/react-pdf": "^0.19.0",
    "bun-pty": "^0.4.8",
    "react": "^19.2.6",
    "ws": "^8.18.0"
  },
  "license": "MIT",
  "author": "HiveMind Contributors",
  "repository": {
    "type": "git",
    "url": "https://github.com/shynlee04/hivemind-plugin.git"
  },
  "homepage": "https://github.com/shynlee04/hivemind-plugin#readme",
  "bugs": {
    "url": "https://github.com/shynlee04/hivemind-plugin/issues"
  },
  "keywords": [
    "opencode",
    "hivemind",
    "multi-agent",
    "orchestration",
    "delegation",
    "session-continuity",
    "concurrency",
    "guardrails",
    "plugin",
    "ai-coding",
    "agent-framework",
    "typescript"
  ],
  "engines": {
    "node": ">=20.0.0",
    "opencode": ">=1.15.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
