{
  "name": "arr-sdk",
  "version": "0.7.1",
  "description": "Unified TypeScript SDK for Sonarr, Radarr, Lidarr, Readarr, and Prowlarr",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./sonarr": {
      "types": "./dist/sonarr/index.d.ts",
      "import": "./dist/sonarr/index.js",
      "require": "./dist/sonarr/index.cjs"
    },
    "./radarr": {
      "types": "./dist/radarr/index.d.ts",
      "import": "./dist/radarr/index.js",
      "require": "./dist/radarr/index.cjs"
    },
    "./prowlarr": {
      "types": "./dist/prowlarr/index.d.ts",
      "import": "./dist/prowlarr/index.js",
      "require": "./dist/prowlarr/index.cjs"
    },
    "./lidarr": {
      "types": "./dist/lidarr/index.d.ts",
      "import": "./dist/lidarr/index.js",
      "require": "./dist/lidarr/index.cjs"
    },
    "./readarr": {
      "types": "./dist/readarr/index.d.ts",
      "import": "./dist/readarr/index.js",
      "require": "./dist/readarr/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "generate": "tsx scripts/generate-types.ts",
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest",
    "test:run": "vitest run",
    "lint": "eslint src",
    "typecheck": "tsc --noEmit",
    "test:types": "tsc -p tests/types/tsconfig.json",
    "prepublishOnly": "npm run generate && npm run build"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "eslint": "^9.0.0",
    "openapi-typescript": "^7.0.0",
    "tsup": "^8.0.0",
    "tsx": "^4.0.0",
    "typescript": "^5.4.0",
    "vitest": "^2.0.0"
  },
  "keywords": [
    "sonarr",
    "radarr",
    "lidarr",
    "readarr",
    "prowlarr",
    "api",
    "sdk",
    "typescript",
    "arr"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/khak1s/arr-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/khak1s/arr-sdk/issues"
  },
  "homepage": "https://github.com/khak1s/arr-sdk#readme"
}
