{
  "name": "@runware/sdk",
  "version": "1.6.9",
  "description": "Runware SDK — unified API for image, video, audio, text, and 3D generation. Schema-driven types, WebSocket and REST transports, LLM streaming.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "generate": "bun run scripts/generate-types.ts",
    "sync-version": "bun run scripts/sync-version.ts",
    "clean": "rm -rf dist",
    "build": "bun run clean && bun run scripts/sync-version.ts && bun run scripts/generate-types.ts && bun build src/index.ts --outdir dist --format esm --target browser --sourcemap=external && tsc --emitDeclarationOnly --declarationMap --outDir dist",
    "test": "bun test",
    "test:integration": "bun test test/integration/",
    "typecheck": "tsc --noEmit -p tsconfig.eslint.json",
    "lint": "eslint .",
    "prepublishOnly": "bun test && bun run build"
  },
  "keywords": [
    "runware",
    "ai",
    "sdk",
    "image-generation",
    "video-generation",
    "audio-generation",
    "text-generation",
    "inference",
    "generative-ai",
    "stable-diffusion",
    "flux"
  ],
  "author": "Runware",
  "homepage": "https://runware.ai",
  "repository": {
    "type": "git",
    "url": "https://github.com/runware/runware-typescript.git"
  },
  "bugs": {
    "url": "https://github.com/runware/runware-typescript/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "license": "MIT",
  "engines": {
    "node": ">=18"
  },
  "peerDependencies": {
    "ajv": "^8.0.0",
    "ws": "latest"
  },
  "peerDependenciesMeta": {
    "ajv": {
      "optional": true
    },
    "ws": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/bun": "^1.3.14",
    "@types/node": "^26.1.1",
    "@types/ws": "^8.18.1",
    "@typescript-eslint/eslint-plugin": "^8.65.0",
    "@typescript-eslint/parser": "^8.65.0",
    "ajv": "^8.20.0",
    "eslint": "^10.7.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-plugin-import": "^2.32.0",
    "typescript": "~6.0.3"
  },
  "overrides": {
    "typescript": "~6.0.3"
  }
}
