{
  "name": "@namzu/openrouter",
  "version": "3.0.1",
  "description": "OpenRouter LLM provider for @namzu/sdk. Access to 200+ models (Claude, GPT-4, Llama, Mixtral) via OpenRouter's unified API.",
  "license": "FSL-1.1-MIT",
  "engines": {
    "node": ">=20.0.0"
  },
  "type": "module",
  "homepage": "https://github.com/cogitave/namzu#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cogitave/namzu.git",
    "directory": "packages/providers/openrouter"
  },
  "bugs": {
    "url": "https://github.com/cogitave/namzu/issues"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "!dist/**/*.test.*",
    "!dist/**/*.proc-test.*",
    "!dist/**/__tests__",
    "!dist/**/__fixtures__",
    "!dist/**/test-setup.*",
    "src",
    "!src/**/*.test.*",
    "!src/**/*.proc-test.*",
    "!src/**/__tests__",
    "!src/**/__fixtures__",
    "!src/**/test-setup.*",
    "LICENSE.md",
    "README.md",
    "CHANGELOG.md"
  ],
  "sideEffects": false,
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "dependencies": {},
  "peerDependencies": {
    "@namzu/sdk": ">=1.3.0"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@types/node": "^22.19.17",
    "typescript": "^5.5.0",
    "vitest": "^4.1.11",
    "@namzu/sdk": "^44.0.0"
  },
  "scripts": {
    "build": "tsc --build",
    "dev": "tsc --build --watch",
    "lint": "biome check src/",
    "lint:fix": "biome check --write src/",
    "format": "biome format --write src/",
    "test": "vitest run --passWithNoTests",
    "typecheck": "tsc --noEmit"
  }
}