{
  "name": "catbox-node",
  "version": "1.0.0",
  "description": "Lightweight Catbox.moe client for Node.js (and Bun) written in TypeScript with zero dependencies",
  "keywords": [
    "api",
    "bun",
    "catbox",
    "catbox.moe",
    "client",
    "javascript",
    "library",
    "node",
    "nodejs",
    "typescript"
  ],
  "homepage": "https://github.com/rgbpx/catbox-node#readme",
  "bugs": {
    "url": "https://github.com/rgbpx/catbox-node/issues",
    "email": "rgbpx@proton.me"
  },
  "license": "MIT",
  "author": {
    "name": "rgbpx",
    "email": "rgbpx@proton.me",
    "url": "https://github.com/rgbpx"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rgbpx/catbox-node.git"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./album": {
      "import": "./dist/album.mjs",
      "require": "./dist/album.cjs"
    },
    "./litterbox": {
      "import": "./dist/litterbox.mjs",
      "require": "./dist/litterbox.cjs"
    },
    "./utils": {
      "import": "./dist/utils.mjs",
      "require": "./dist/utils.cjs"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "typecheck": "tsc",
    "lint": "oxlint ./src",
    "lint:fix": "oxlint --fix ./src",
    "fmt": "oxfmt",
    "fmt:check": "oxfmt --check",
    "test": "vitest run --project unit",
    "test:integration": "vitest run --project integration --mode test",
    "build": "tsdown",
    "release": "release-it"
  },
  "devDependencies": {
    "@arethetypeswrong/core": "^0.18.5",
    "@release-it/conventional-changelog": "^12.0.0",
    "@tsconfig/node20": "^20.0.0",
    "@types/node": "^20.0.0",
    "oxfmt": "^0.63.0",
    "oxlint": "^1.75.0",
    "oxlint-tsgolint": "^7.0.2001",
    "publint": "^0.3.22",
    "release-it": "^21.0.1",
    "tsdown": "^0.22.14",
    "typescript": "^7.0.0",
    "vitest": "^4.1.10"
  },
  "devEngines": {
    "runtime": [
      {
        "name": "node",
        "version": ">=22.21.0",
        "onFail": "error"
      },
      {
        "name": "bun",
        "version": ">=1.0.36",
        "onFail": "error"
      }
    ]
  },
  "engines": {
    "bun": ">=1.0.36",
    "node": ">=20.0.0"
  }
}
