{
  "name": "@yoryoboy/clickup-sdk",
  "version": "1.4.0",
  "description": "A modular TypeScript SDK for interacting with the ClickUp API",
  "type": "module",
  "target": "ES2020",
  "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"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "clickup",
    "api",
    "sdk",
    "typescript",
    "task-management"
  ],
  "author": "Yoryoboy",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Yoryoboy/clickup-sdk.git"
  },
  "dependencies": {
    "axios": "^1.8.3",
    "dotenv": "^16.5.0",
    "form-data": "^4.0.3"
  },
  "devDependencies": {
    "@eslint/js": "^9.28.0",
    "@types/node": "^24.0.3",
    "eslint": "^9.28.0",
    "eslint-plugin-jsdoc": "^51.2.2",
    "globals": "^16.2.0",
    "rimraf": "^6.0.1",
    "standard": "^17.1.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.35.0"
  },
  "scripts": {
    "clean": "rimraf dist",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:cjs": "tsc -p tsconfig.cjs.json && node scripts/write-cjs-package.cjs",
    "build": "pnpm run clean && pnpm run build:esm && pnpm run build:cjs",
    "test": "echo \"Error: no test specified\" && exit 1"
  }
}