{
  "name": "@remote-app/qbittorrent-client",
  "version": "0.32.0",
  "type": "module",
  "description": "qBittorrent WebUI API client",
  "keywords": [
    "qbittorrent",
    "webui",
    "api",
    "client"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jgalat/remote-app.git",
    "directory": "packages/qbittorrent-client"
  },
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.mts",
  "exports": {
    ".": {
      "react-native": "./src/index.ts",
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./schemas": {
      "react-native": "./src/schemas.ts",
      "import": {
        "types": "./dist/schemas.d.mts",
        "default": "./dist/schemas.mjs"
      },
      "require": {
        "types": "./dist/schemas.d.cts",
        "default": "./dist/schemas.cjs"
      }
    }
  },
  "react-native": "src/index.ts",
  "files": [
    "dist"
  ],
  "publishConfig": {
    "provenance": true
  },
  "dependencies": {
    "zod": "^3.25.76"
  },
  "scripts": {
    "build": "tsdown",
    "test": "vitest run"
  }
}