{
  "name": "@innei/qbittorrent-browser",
  "version": "9.6.7",
  "description": "TypeScript api wrapper for qbittorrent using got",
  "author": "Scott Cooper <scttcper@gmail.com>",
  "license": "MIT",
  "repository": "scttcper/qbittorrent",
  "homepage": "https://qbittorrent.vercel.app",
  "type": "module",
  "main": "./dist/src/index.js",
  "types": "./dist/src/index.d.ts",
  "files": [
    "dist/src"
  ],
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "typescript",
    "qbittorrent"
  ],
  "dependencies": {
    "@ctrl/magnet-link": "^4.1.0",
    "@ctrl/shared-torrent": "^6.4.0",
    "@ctrl/torrent-file": "^4.2.0",
    "type-fest": "^4.41.0",
    "ufo": "^1.6.1",
    "uint8array-extras": "^1.5.0"
  },
  "devDependencies": {
    "@biomejs/biome": "2.1.2",
    "@ctrl/eslint-config-biome": "5.0.0",
    "@eslint/compat": "^1.3.2",
    "@sindresorhus/tsconfig": "7.0.0",
    "@types/node": "24.1.0",
    "@vitest/coverage-v8": "3.2.4",
    "eslint": "^9.35.0",
    "nbump": "2.1.7",
    "p-wait-for": "5.0.2",
    "typedoc": "0.28.7",
    "typescript": "5.8.3",
    "vitest": "3.2.4"
  },
  "release": {
    "branches": [
      "master"
    ]
  },
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "lint": "pnpm run '/^(lint:biome|lint:eslint)$/'",
    "lint:biome": "biome check .",
    "lint:eslint": "eslint .",
    "lint:fix": "pnpm run '/^(lint:biome|lint:eslint):fix$/'",
    "lint:eslint:fix": "eslint . --fix",
    "lint:biome:fix": "biome check . --write",
    "build": "tsc",
    "build:docs": "typedoc",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ci": "vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml"
  }
}