{
  "name": "@compilr-dev/agents",
  "version": "0.6.0",
  "description": "Lightweight multi-LLM agent library for building CLI AI assistants",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "sideEffects": false,
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf dist",
    "lint": "eslint src/",
    "lint:fix": "eslint src/ --fix",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\"",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "prepublishOnly": "npm run clean && npm run lint && npm run test && npm run build",
    "typecheck": "tsc --noEmit",
    "docs": "typedoc && node scripts/inject-frontmatter.mjs && typedoc --options typedoc.llms.json && mv docs/llms/README.md docs/llms.txt",
    "docs:api": "typedoc",
    "docs:llms": "typedoc --options typedoc.llms.json",
    "docs:watch": "typedoc --watch"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/compilr-dev/agents.git"
  },
  "keywords": [
    "ai",
    "agents",
    "llm",
    "claude",
    "openai",
    "gemini",
    "cli",
    "multi-llm",
    "anthropic"
  ],
  "author": "Carmelo Scozzola",
  "license": "FSL-1.1-MIT",
  "bugs": {
    "url": "https://github.com/compilr-dev/agents/issues"
  },
  "homepage": "https://github.com/compilr-dev/agents#readme",
  "engines": {
    "node": ">=20.0.0"
  },
  "peerDependencies": {
    "@anthropic-ai/sdk": ">=0.72.1",
    "@modelcontextprotocol/sdk": "^1.23.0"
  },
  "peerDependenciesMeta": {
    "@anthropic-ai/sdk": {
      "optional": true
    },
    "@modelcontextprotocol/sdk": {
      "optional": true
    }
  },
  "devDependencies": {
    "@anthropic-ai/sdk": "^0.74.0",
    "@eslint/js": "^9.39.1",
    "@modelcontextprotocol/sdk": "^1.23.0",
    "@opentelemetry/sdk-trace-base": "^2.5.1",
    "@types/node": "^25.2.3",
    "@vitest/coverage-v8": "^4.0.18",
    "dotenv": "^17.2.3",
    "eslint": "^9.39.1",
    "prettier": "^3.7.1",
    "typedoc": "^0.28.19",
    "typedoc-plugin-markdown": "^4.11.0",
    "typescript": "^5.3.0",
    "typescript-eslint": "^8.48.0",
    "vitest": "^4.0.18"
  },
  "dependencies": {
    "@compilr-dev/logger": "^0.1.0",
    "@google/genai": "^1.42.0",
    "@opentelemetry/api": "^1.9.0",
    "js-tiktoken": "^1.0.21"
  },
  "overrides": {
    "hono": "^4.12.21",
    "minimatch": ">=10.2.1",
    "glob": ">=11.0.0"
  }
}
