{
  "name": "multillama",
  "version": "1.3.0",
  "type": "module",
  "description": "A TypeScript library for interacting with multiple language models via orchestrated pipelines.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*"
  ],
  "scripts": {
    "build": "tsc",
    "start": "npm run build && node dist/index.js",
    "lint": "eslint 'src/**/*.ts'",
    "format": "prettier --write 'src/**/*.ts'",
    "test": "jest"
  },
  "author": "Andy Eulogio",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/andygeek/multillama-ts.git"
  },
  "homepage": "https://github.com/andygeek/multillama-ts",
  "devDependencies": {
    "@eslint/js": "^9.12.0",
    "@types/jest": "^29.5.13",
    "@types/node": "^22.7.5",
    "@typescript-eslint/eslint-plugin": "^8.8.1",
    "@typescript-eslint/parser": "^8.8.1",
    "eslint": "^9.12.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.2.1",
    "husky": "^9.1.6",
    "jest": "^29.7.0",
    "lint-staged": "^15.2.10",
    "prettier": "^3.3.3",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.2",
    "typescript": "5.5"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.29.2",
    "@google/generative-ai": "^0.3.1",
    "ollama": "^0.5.9",
    "openai": "^4.67.3",
    "ora": "^8.1.0"
  },
  "keywords": [
    "MultiLlama",
    "TypeScript",
    "Language Models",
    "Pipeline",
    "Orchestration",
    "NLP",
    "AI",
    "Machine Learning",
    "Ollama",
    "OpenAI",
    "LLM",
    "Natural Language Processing"
  ]
}
