{
  "name": "@bernierllc/rate-limiter",
  "version": "0.7.0",
  "description": "High-performance rate limiting with multiple algorithms (token bucket, sliding window) and storage backends (memory, Redis, database)",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "rate-limiting",
    "throttling",
    "api-security",
    "token-bucket",
    "sliding-window",
    "middleware",
    "performance",
    "security"
  ],
  "author": "Bernier LLC",
  "license": "UNLICENSED",
  "private": false,
  "dependencies": {
    "@bernierllc/connection-parser": "3.0.0"
  },
  "peerDependencies": {
    "ioredis": "^5.0.0",
    "redis": "^4.0.0"
  },
  "peerDependenciesMeta": {
    "redis": {
      "optional": true
    },
    "ioredis": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^18.15.0",
    "@typescript-eslint/eslint-plugin": "^5.57.0",
    "@typescript-eslint/parser": "^5.57.0",
    "eslint": "^8.37.0",
    "jest": "^29.5.0",
    "ts-jest": "^29.0.5",
    "typescript": "^5.0.0"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/bernierllc/tools",
    "directory": "packages/core/rate-limiter"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "jest",
    "test:run": "jest",
    "test:coverage": "jest --coverage",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "clean": "rm -rf dist"
  }
}