{
  "name": "@runjobsai/sdk",
  "version": "0.1.0",
  "description": "JavaScript / TypeScript client for the RunJobs AI Gateway",
  "license": "MIT",
  "author": "RunJobs",
  "homepage": "https://github.com/runjobsai/sdk-js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/runjobsai/sdk-js.git"
  },
  "bugs": {
    "url": "https://github.com/runjobsai/sdk-js/issues"
  },
  "keywords": [
    "runjobs",
    "ai",
    "llm",
    "gateway",
    "sdk",
    "openai-compatible"
  ],
  "type": "module",
  "engines": {
    "node": ">=18"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "unpkg": "./dist/sdk.umd.js",
  "jsdelivr": "./dist/sdk.umd.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./browser": "./dist/sdk.umd.js"
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@types/node": "^20.0.0",
    "tsup": "^8.5.1",
    "typescript": "^5.5.0"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json && tsup",
    "clean": "rm -rf dist",
    "test": "npm run build && node --test tests/*.test.mjs"
  }
}