{
  "name": "@byterover/claude-plugin",
  "version": "1.1.1",
  "description": "Native bridge between ByteRover context engine and Claude Code — enriches Claude's auto-memory with BM25-ranked knowledge from brv context tree",
  "type": "module",
  "bin": {
    "brv-claude-plugin": "./dist/cli.js"
  },
  "main": "./dist/cli.js",
  "scripts": {
    "build": "rm -rf dist && tsc",
    "dev": "tsx src/cli.ts",
    "test": "vitest run --dir test",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src/",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run build && npm test"
  },
  "files": [
    "dist/**/*.js",
    "dist/**/*.d.ts",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@byterover/brv-bridge": "^1.2.0",
    "@inquirer/prompts": "^7.0.0",
    "commander": "^13.0.0",
    "js-yaml": "^4.1.0",
    "picocolors": "^1.1.0",
    "zod": "^3.24.0"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.0",
    "@types/node": "^22.0.0",
    "tsx": "^4.19.0",
    "typescript": "^5.7.0",
    "vitest": "^3.0.0"
  },
  "keywords": [
    "byterover",
    "claude-code",
    "memory",
    "context-engine",
    "bridge"
  ],
  "author": "ByteRover",
  "license": "Elastic-2.0",
  "engines": {
    "node": ">=20"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/campfirein/brv-claude-plugin.git"
  },
  "homepage": "https://github.com/campfirein/brv-claude-plugin#readme",
  "bugs": {
    "url": "https://github.com/campfirein/brv-claude-plugin/issues"
  },
  "publishConfig": {
    "access": "public"
  }
}
