{
  "name": "@devboost/opencode-litellm-provider-config-generator",
  "version": "0.2.0",
  "description": "Generate OpenCode LiteLLM provider model configuration from LiteLLM model metadata.",
  "license": "MIT",
  "type": "module",
  "bin": {
    "opencode-litellm-provider-config-generator": "dist/main.js"
  },
  "files": [
    "dist/**/*.js",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/",
    "tag": "latest"
  },
  "directories": {
    "doc": "docs"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "typecheck": "tsc -p tsconfig.json",
    "lint": "eslint src test vitest.config.ts --cache --cache-location .cache/eslint/.eslintcache --max-warnings 0",
    "lint:fix": "eslint src test vitest.config.ts --cache --cache-location .cache/eslint/.eslintcache --fix",
    "audit": "npm audit --audit-level=high",
    "start": "node dist/main.js",
    "test": "vitest run",
    "check": "npm run build && npm run typecheck && npm run lint && npm run audit && npm test",
    "check:static": "npm run typecheck && npm run lint && npm run audit"
  },
  "keywords": [
    "opencode",
    "litellm",
    "cli"
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^25.9.1",
    "eslint": "^10.4.0",
    "eslint-plugin-sonarjs": "^4.0.3",
    "globals": "^17.5.0",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.59.4",
    "vitest": "^4.1.7"
  },
  "dependencies": {
    "ajv": "^8.20.0",
    "jsonc-parser": "^3.3.1"
  }
}
