{
  "name": "anymodel",
  "version": "1.17.0",
  "description": "Universal AI model proxy — route any coding tool through OpenRouter, Ollama, LMStudio, llama.cpp, or any LLM provider",
  "type": "module",
  "bin": {
    "anymodel": "./cli.mjs"
  },
  "main": "proxy.mjs",
  "files": [
    "cli.mjs",
    "cli.js",
    "proxy.mjs",
    "providers/",
    "README.md",
    "LOCAL_SETUP.md",
    "LICENSE"
  ],
  "scripts": {
    "test": "node --test test/*.test.mjs worker/test/*.test.mjs",
    "start": "node cli.mjs",
    "sync-version": "node -e \"const v=require('./package.json').version; const fs=require('fs'); let c=fs.readFileSync('cli.js','utf8'); c=c.replace(/VERSION:\\\"[0-9][^\\\"]*\\\",FEEDBACK/g,'VERSION:\\\"'+v+'\\\",FEEDBACK'); c=c.replace(/version:\\\"1\\.[0-9]+\\.[0-9]+\\\"/g,'version:\\\"'+v+'\\\"'); fs.writeFileSync('cli.js',c);\"",
    "prepublishOnly": "npm run sync-version"
  },
  "keywords": [
    "openrouter",
    "ollama",
    "lmstudio",
    "llama.cpp",
    "llm",
    "proxy",
    "ai",
    "cli",
    "model-router"
  ],
  "author": "antonoly",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/anton-abyzov/anymodel"
  },
  "homepage": "https://anymodel.dev",
  "engines": {
    "node": ">=18.0.0"
  }
}
