{
  "name": "timr-sdk",
  "version": "0.3.1",
  "description": "Community TypeScript SDK for the timr time-tracking API",
  "keywords": [
    "timr",
    "time-tracking",
    "sdk",
    "openapi",
    "client"
  ],
  "license": "MIT",
  "author": "Michael Jauk",
  "repository": {
    "type": "git",
    "url": "https://github.com/michaeljauk/timr-client.git",
    "directory": "packages/sdk"
  },
  "homepage": "https://github.com/michaeljauk/timr-client/tree/main/packages/sdk",
  "bugs": "https://github.com/michaeljauk/timr-client/issues",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=20"
  },
  "sideEffects": false,
  "dependencies": {
    "openapi-fetch": "^0.17.0"
  },
  "devDependencies": {
    "@types/node": "^25.6.0",
    "openapi-typescript": "^7.4.4",
    "tsup": "^8.3.5",
    "typescript": "^5.6.3",
    "vitest": "^2.1.8"
  },
  "scripts": {
    "generate": "openapi-typescript ../../openapi.json -o src/generated.ts",
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "typecheck": "tsc --noEmit",
    "lint": "tsc --noEmit"
  }
}