{
  "name": "herdr-link",
  "version": "0.5.0",
  "pi": {
    "extensions": [
      "./src/pi.ts"
    ]
  },
  "keywords": [
    "pi-package",
    "herdr",
    "agent-interop"
  ],
  "description": "Herdr Link — cross-agent interoperability layer for Herdr sessions. Pi / OpenCode native adapters + shared stdio MCP server for Claude Code / Codex / AGY.",
  "files": [
    "PROTOCOL.md",
    "README.md",
    "CHANGELOG.md",
    "docs/mcp-wiring.md",
    "examples/",
    "dist/",
    "src/",
    "scripts/mcp-probe.mjs"
  ],
  "type": "module",
  "license": "MIT",
  "author": "LZHcode1986",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LZHcode1986/herdr-link.git"
  },
  "homepage": "https://github.com/LZHcode1986/herdr-link#readme",
  "bugs": "https://github.com/LZHcode1986/herdr-link/issues",
  "bin": {
    "herdr-link": "./dist/herdr-link.mcp.js"
  },
  "engines": {
    "node": ">=22.6.0"
  },
  "scripts": {
    "typecheck": "tsc --noEmit",
    "test": "node --experimental-strip-types --test test/*.test.ts",
    "build:opencode": "esbuild src/opencode.ts --bundle --format=esm --platform=node --external:@opencode-ai/plugin --outfile=dist/herdr-link.opencode.js",
    "build:mcp": "esbuild src/mcp.ts --bundle --format=esm --platform=node --target=node22 --banner:js='#!/usr/bin/env node' --outfile=dist/herdr-link.mcp.js",
    "check:mcp-bundle": "node scripts/check-mcp-bundle.mjs"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": "*",
    "typebox": "*"
  },
  "peerDependenciesMeta": {
    "@earendil-works/pi-coding-agent": {
      "optional": true
    },
    "typebox": {
      "optional": true
    }
  },
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "^0.84.2",
    "@opencode-ai/plugin": "^1.18.13",
    "@types/node": "^24.0.0",
    "esbuild": "^0.25.0",
    "typebox": "^1.3.7",
    "typescript": "^5.7.0"
  }
}
