{
  "$schema": "http://json.schemastore.org/package.json",
  "name": "@abacus/throttlers",
  "version": "1.0.0",
  "description": "A modern, zero-dependency throttling toolkit for JavaScript and TypeScript.",
  "keywords": [
    "throttle",
    "rate-limit",
    "token-bucket",
    "leaky-bucket",
    "sliding-window",
    "fixed-window",
    "backpressure",
    "typescript",
    "throttler"
  ],
  "private": true,
  "license": "MIT",
  "contributors": [
    "See AUTHORS file"
  ],
  "homepage": "https://github.com/havelessbemore/throttlers",
  "repository": {
    "type": "git",
    "url": "https://github.com/havelessbemore/throttlers.git"
  },
  "bugs": {
    "url": "https://github.com/havelessbemore/throttlers/issues"
  },
  "type": "module",
  "sideEffects": false,
  "types": "./dist/esm/index.d.ts",
  "main": "./dist/cjs/index.cjs",
  "module": "./dist/esm/index.js",
  "exports": {
    ".": {
      "types": "./dist/esm/index.d.ts",
      "require": "./dist/cjs/index.cjs",
      "import": "./dist/esm/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=14.17"
  },
  "scripts": {
    "build": "tsup",
    "format": "prettier . --write",
    "lint": "eslint .",
    "test": "jest",
    "prepare": "husky"
  },
  "devDependencies": {
    "@eslint/js": "^9.26.0",
    "@eslint/json": "^0.12.0",
    "@types/jest": "^29.5.14",
    "cross-env": "^7.0.3",
    "esbuild": "^0.25.4",
    "eslint": "^9.26.0",
    "eslint-config-prettier": "^10.1.5",
    "globals": "^16.1.0",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "lint-staged": "^16.0.0",
    "prettier": "^3.5.3",
    "ts-jest": "^29.3.3",
    "ts-node": "^10.9.2",
    "tsup": "^8.5.0",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.32.1"
  }
}
