{
  "name": "model-mux",
  "version": "1.0.6",
  "description": "Basically Python LiteLLM for TypeScript Google ADK",
  "keywords": [
    "google-adk",
    "typescript",
    "litellm",
    "openai",
    "anthropic",
    "chatgpt",
    "claude",
    "adapter",
    "llm-gateway",
    "ai-gateway",
    "llm"
  ],
  "license": "MIT",
  "author": "NickChecan",
  "repository": {
    "type": "git",
    "url": "https://github.com/NickChecan/model-mux.git"
  },
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "dev": "tsx --watch src/index.ts",
    "build": "tsc",
    "test:all": "vitest run",
    "test:unit": "vitest run test/unit",
    "test:integration": "vitest run test/integration",
    "test:watch": "vitest --watch",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier . --write",
    "format:check": "prettier . --check",
    "verify": "npm run format:check && npm run lint && npm run test:all"
  },
  "devDependencies": {
    "@google/adk": "^0.5.0",
    "@eslint/js": "^9.39.4",
    "@semantic-release/exec": "^7.1.0",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/npm": "^12.0.2",
    "@types/chance": "^1.1.7",
    "@types/node": "^25.3.5",
    "@vitest/coverage-v8": "^4.0.18",
    "chance": "^1.1.13",
    "dotenv": "^17.3.1",
    "eslint": "^9.39.4",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import": "^2.32.0",
    "globals": "^17.4.0",
    "jiti": "^2.6.1",
    "prettier": "^3.8.1",
    "semantic-release": "^24.2.9",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.57.0",
    "vitest": "^4.0.18"
  },
  "peerDependencies": {
    "@google/adk": "^0.5.0"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "0.79.0",
    "openai": "^6.25.0"
  }
}
