{
  "name": "multi-llm-ts",
  "version": "5.1.1",
  "description": "Library to query multiple LLM providers in a consistent way",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nbonamy/multi-llm-ts.git"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "bin": {
    "cli": "./tools/cli.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "typecheck": "tsc --noEmit",
    "build": "tsup",
    "lint": "eslint '**/*.ts'",
    "ollama": "node ./tools/update_ollama_models.js",
    "dist": "npm run lint && npx vitest --run && npm run build",
    "test": "vitest --run",
    "test:watch": "vitest --watch",
    "test:ui": "vitest --ui --coverage.enabled=true",
    "test:real": "REAL_API=1 vitest tests/unit/engine_real_apis.test.ts",
    "example": "tsx ./example/index.ts",
    "docs:dev": "vitepress dev docs --port 5175",
    "docs:build": "vitepress build docs",
    "docs:preview": "vitepress preview docs"
  },
  "author": {
    "name": "Nicolas Bonamy",
    "email": "nicolas@bonamy.fr"
  },
  "devDependencies": {
    "@eslint/compat": "^1.2.4",
    "@typescript-eslint/eslint-plugin": "^8.19.0",
    "@typescript-eslint/parser": "^8.19.0",
    "@vitest/coverage-v8": "^2.1.8",
    "@vitest/ui": "^2.1.8",
    "dotenv": "^16.4.7",
    "eslint": "^9.17.0",
    "eslint-import-resolver-typescript": "^3.7.0",
    "eslint-plugin-import": "^2.31.0",
    "jsdom": "^26.0.0",
    "tsup": "^8.3.5",
    "tsx": "^4.19.2",
    "typescript": "^5.7.2",
    "vitepress": "^1.6.4",
    "vitest": "^2.1.8"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.67.0",
    "@google/genai": "^1.37.0",
    "@mistralai/mistralai": "^1.10.0",
    "groq-sdk": "^0.34.0",
    "minimatch": "^10.0.3",
    "ollama": "^0.6.3",
    "openai": "^6.7.0",
    "partial-json": "^0.1.7",
    "zod": "^3.25.76",
    "zod-to-json-schema": "^3.24.6"
  }
}
