{
  "name": "codehere",
  "version": "0.8.0",
  "description": "A PM for your AI coding agents. Delegate, orchestrate, and audit Claude Code, Codex, Aider, OpenCode, Gemini, and any user-configured CLI agent from one local web UI — every AI action traced, every file scored, every spawn warmed with project memory.",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "codehere": "dist/index.js",
    "ch": "dist/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "prepare": "bash ../scripts/install-hooks.sh || true",
    "prebuild": "rm -rf dist",
    "build": "tsc",
    "postbuild": "chmod +x dist/index.js",
    "repomap": "node scripts/gen-repo-map.mjs",
    "pattern-counts": "node scripts/print-pattern-counts.mjs",
    "prepublishOnly": "npm run build && find dist -name '*.map' -delete && find dist -name '*.d.ts' -delete && find dist -name '*.d.ts.map' -delete",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "test": "npm run build && vitest run",
    "test:watch": "vitest",
    "lint": "eslint src/ --ext .ts",
    "format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
    "format:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
    "sbom": "npm sbom --sbom-format=spdx --omit=dev",
    "pretag:check": "../scripts/pretag-npm-check.sh",
    "cassette:record": "../scripts/capture-cassette.sh"
  },
  "keywords": [
    "ai-coding-agents",
    "agent-orchestration",
    "audit-trail",
    "trust-scoring",
    "ai-safety",
    "ai-governance",
    "claude-code",
    "codex",
    "aider",
    "opencode",
    "hook-system",
    "sast",
    "cli-tool",
    "typescript"
  ],
  "author": "The codehere authors",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/muhammadegaa/codehere.git"
  },
  "bugs": {
    "url": "https://github.com/muhammadegaa/codehere/issues"
  },
  "homepage": "https://codehere.uk",
  "dependencies": {
    "@mohammednagy/graphify-ts": "^0.22.3",
    "boxen": "^8.0.1",
    "chalk": "^5.3.0",
    "cli-progress": "^3.12.0",
    "cli-table3": "^0.6.5",
    "commander": "^11.1.0",
    "dotenv": "^16.3.1",
    "gray-matter": "^4.0.3",
    "ora": "^7.0.1",
    "yaml": "^2.8.4"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/cli-progress": "^3.11.5",
    "@types/node": "^20.19.25",
    "eslint": "^10.2.0",
    "playwright": "^1.60.0",
    "prettier": "^3.8.3",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.58.2",
    "vitest": "^4.1.4"
  }
}
