{
  "name": "typedapi-client-helpers",
  "version": "0.3.5",
  "description": "Reusable typed OpenAPI client helpers.",
  "license": "MIT",
  "keywords": [
    "typescript",
    "openapi",
    "swagger",
    "api-client",
    "typed-api",
    "typescript-api-client",
    "openapi-client",
    "swagger-client",
    "client-generator",
    "api-generator",
    "codegen",
    "type-safe",
    "type-safe-api",
    "fetch",
    "frontend",
    "api-wrapper",
    "generated-client",
    "form-data",
    "multipart",
    "pagination",
    "filters",
    "sorting"
  ],
  "type": "module",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "scripts",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "bin": {
    "typedapi-generate": "./scripts/generate-api-minimal.mjs"
  },
  "engines": {
    "node": ">=18"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Stef-Buurman/TypedApi.git",
    "directory": "npm/typed-api-client"
  },
  "homepage": "https://github.com/Stef-Buurman/TypedApi/tree/main/npm/typed-api-client#readme",
  "config": {
    "apiOutput": "src/api",
    "typedApiCleanOutput": true,
    "typedApiModuleNameFirstTag": true,
    "typedApiUseTypeOnlyImports": true,
    "typedApiDefaultFunctionsPath": "src/defaultApiFunctions",
    "typedApiDefaultSuccessHandler": "handleGoodResult",
    "typedApiDefaultErrorHandler": "handleErrors",
    "typedApiDefaultErrorMessage": "unknownErrorMessage",
    "typedApiDefaultResponseAsSuccess": false,
    "typedApiGenerateUnionEnums": false,
    "typedApiEnumNamesAsValues": false,
    "typedApiSwaggerBackupFile": "swagger/swagger.backup.json",
    "typedApiDownloadTimeoutMs": 15000,
    "typedApiGenerateMissingOperationIds": false,
    "typedApiMethodNameStyle": "operationId",
    "typedApiPrefixMethodNamesWithController": false
  },
  "scripts": {
    "clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
    "typecheck": "node ./node_modules/typescript/bin/tsc --noEmit",
    "build": "node ./scripts/build.mjs",
    "prepack": "npm run typecheck && npm run build",
    "generate:api": "node ./scripts/generate-api-minimal.mjs",
    "test": "npm run build && node --test test/*.test.mjs",
    "verify": "npm run typecheck && npm test"
  },
  "devDependencies": {
    "typescript": "5.8.3"
  }
}
