{
  "name": "ludicrous-gateway",
  "version": "0.1.13",
  "description": "Multi-agent LLM API Gateway for Claude Code with content-based intelligent routing",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "ludicrous-gateway": "./dist/cli.js"
  },
  "files": [
    "dist",
    "config"
  ],
  "scripts": {
    "dev": "tsx watch src/index.ts",
    "build": "tsup",
    "start": "node dist/index.js",
    "cli": "tsx src/cli.ts",
    "test": "vitest",
    "test:run": "vitest run",
    "lint": "eslint src/",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "pnpm build"
  },
  "keywords": [
    "llm",
    "api-gateway",
    "claude",
    "claude-code",
    "openai",
    "gemini",
    "grok",
    "mistral",
    "deepseek",
    "ollama",
    "routing",
    "proxy",
    "ai",
    "anthropic"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sashabogi/ludicrous-gateway.git"
  },
  "bugs": {
    "url": "https://github.com/sashabogi/ludicrous-gateway/issues"
  },
  "homepage": "https://github.com/sashabogi/ludicrous-gateway#readme",
  "author": "sashabogi",
  "license": "MIT",
  "dependencies": {
    "@clack/prompts": "^0.11.0",
    "commander": "^12.1.0",
    "express": "^4.21.0",
    "js-yaml": "^4.1.0",
    "picocolors": "^1.1.1",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^22.0.0",
    "tsup": "^8.2.4",
    "tsx": "^4.19.0",
    "typescript": "^5.5.4",
    "vitest": "^2.0.5"
  },
  "engines": {
    "node": ">=20.0.0"
  }
}
