{
  "name": "@mesadev/rest",
  "version": "0.48.3",
  "description": "TypeScript REST SDK for the Mesa API",
  "author": "Mesa",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/mesa-dot-dev/depot.git",
    "directory": "packages/sdk/rest/ts"
  },
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "build": "pnpm run clean && pnpm run gen:rest:ts && tsc -p tsconfig.json",
    "clean": "rm -rf dist",
    "gen:rest:ts": "MESA_OPENAPI_TS_OUTPUT_PATH=${MESA_OPENAPI_TS_OUTPUT_PATH:-src} openapi-ts -i ../../../docs/openapi.json -f openapi-ts.config.mjs"
  }
}