{
  "name": "@restatedev/restate-sdk-clients",
  "version": "1.16.2",
  "description": "Typescript SDK for Restate",
  "author": "Restate Developers",
  "email": "code@restate.dev",
  "license": "MIT",
  "homepage": "https://github.com/restatedev/sdk-typescript#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/restatedev/sdk-typescript.git"
  },
  "bugs": {
    "url": "https://github.com/restatedev/sdk-typescript/issues"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@restatedev/restate-sdk-core": "1.16.2"
  },
  "devDependencies": {},
  "scripts": {
    "test": "turbo run _test --filter={.}...",
    "_test": "vitest run",
    "build": "turbo run _build --filter={.}...",
    "_build": "tsc --noEmit && tsdown",
    "dev": "tsc --noEmit --watch",
    "clean": "rm -rf dist *.tsbuildinfo .turbo",
    "check:types": "turbo run _check:types --filter={.}...",
    "_check:types": "tsc --noEmit --project tsconfig.build.json",
    "lint": "eslint .",
    "check:exports": "turbo run _check:exports --filter={.}...",
    "_check:exports": "attw --pack .",
    "check:api": "turbo run _check:api --filter={.}...",
    "_check:api": "api-extractor run --local"
  }
}