{
  "name": "@tai42/api-client",
  "version": "18.0.0",
  "description": "Typed client for the tai42-skeleton HTTP API.",
  "license": "Apache-2.0",
  "author": "tai42 <oss@tai42.ai>",
  "homepage": "https://tai42.ai",
  "repository": {
    "type": "git",
    "url": "https://github.com/tai42ai/tai-studio",
    "directory": "packages/api-client"
  },
  "bugs": {
    "url": "https://github.com/tai42ai/tai-studio/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "sideEffects": false,
  "dependencies": {
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@microsoft/api-extractor": "7.58.12",
    "@types/node": "^22.10.5",
    "@vitest/coverage-v8": "^5.0.0",
    "json-schema-to-zod": "2.8.1",
    "vitest": "^5.0.0"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "LICENSE",
    "NOTICE",
    "dist",
    "src",
    "!src/**/*.test.ts",
    "!src/**/*.test.tsx",
    "!src/**/*.spec.ts",
    "!src/**/*.spec.tsx",
    "!src/test-setup.ts",
    "!src/**/test-utils.ts",
    "!src/**/test-utils.tsx",
    "!src/**/__snapshots__"
  ],
  "scripts": {
    "build": "tsc -b tsconfig.build.json",
    "typecheck": "tsc -b tsconfig.build.json && tsc --noEmit -p tsconfig.json",
    "lint": "eslint src --max-warnings 0",
    "format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
    "test": "vitest run",
    "api:check": "api-extractor run --config config/api-extractor.json",
    "api:update": "api-extractor run --local --config config/api-extractor.json",
    "schema:generate": "node scripts/gen-schemas.mjs",
    "schema:check": "node scripts/gen-schemas.mjs --check",
    "schema:refresh": "node scripts/schema-refresh.mjs"
  }
}