{
  "name": "maiar-agents",
  "version": "1.0.0",
  "description": "Multi-provider AI agent library for interacting with various AI models",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "ai",
    "agents",
    "machine learning",
    "openai",
    "anthropic",
    "claude",
    "deepseek",
    "mistral",
    "gemini",
    "midjourney",
    "runway",
    "nvidia"
  ],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "@anthropic-ai/sdk": "^0.36.3",
    "@google/generative-ai": "^0.22.0",
    "@maiar-ai/core": "^0.8.0",
    "axios": "^1.7.9",
    "openai": "^4.85.3"
  },
  "devDependencies": {
    "@swc/cli": "^0.6.0",
    "@swc/core": "^1.10.18",
    "@types/node": "^20.17.19",
    "@typescript-eslint/eslint-plugin": "^6.13.2",
    "@typescript-eslint/parser": "^6.13.2",
    "eslint": "^8.55.0",
    "typescript": "^5.7.3"
  },
  "peerDependencies": {
    "@maiar-ai/core": "^0.8.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/absurdish/maiar-ai-agents.git"
  },
  "bugs": {
    "url": "https://github.com/absurdish/maiar-ai-agents/issues"
  },
  "homepage": "https://github.com/absurdish/maiar-ai-agents#readme",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "npx tsc",
    "dev": "npx swc src/index.ts -o dist/index.js",
    "lint": "eslint src --ext .ts",
    "test": "echo \"Error: no test specified\" && exit 1"
  }
}