{
  "name": "@joint-ops/hitlimit",
  "version": "1.5.0",
  "description": "Fast rate limiting middleware for Express, Fastify, NestJS & Node.js - API throttling, brute force protection, request limiting",
  "author": {
    "name": "Shayan M Hussain",
    "email": "shayanhussain48@gmail.com",
    "url": "https://github.com/ShayanHussainSB"
  },
  "contributors": [
    {
      "name": "tanv33",
      "url": "https://github.com/tanv33"
    },
    {
      "name": "builtbyali",
      "url": "https://github.com/builtbyali"
    },
    {
      "name": "MuhammadRehanRasool",
      "url": "https://github.com/MuhammadRehanRasool"
    },
    {
      "name": "sultandilaram",
      "url": "https://github.com/sultandilaram"
    },
    {
      "name": "MoizYousuf",
      "url": "https://github.com/MoizYousuf"
    },
    {
      "name": "shoaib-tumi",
      "url": "https://github.com/shoaib-tumi"
    }
  ],
  "license": "MIT",
  "homepage": "https://hitlimit.jointops.dev",
  "repository": {
    "type": "git",
    "url": "https://github.com/JointOps/hitlimit-monorepo",
    "directory": "packages/hitlimit"
  },
  "bugs": {
    "url": "https://github.com/JointOps/hitlimit-monorepo/issues"
  },
  "keywords": [
    "rate-limit",
    "rate-limiter",
    "rate-limiting",
    "ratelimit",
    "express",
    "express-rate-limit",
    "express-middleware",
    "express-throttle",
    "nestjs",
    "nestjs-throttler",
    "nestjs-rate-limit",
    "nest-throttler",
    "fastify",
    "fastify-rate-limit",
    "fastify-plugin",
    "fastify-middleware",
    "hono",
    "hono-rate-limit",
    "hono-middleware",
    "koa",
    "koa-rate-limit",
    "middleware",
    "throttle",
    "throttling",
    "api",
    "api-rate-limit",
    "api-throttle",
    "request-limit",
    "request-throttling",
    "ddos-protection",
    "brute-force",
    "brute-force-protection",
    "login-protection",
    "redis",
    "redis-rate-limit",
    "sqlite",
    "better-sqlite3",
    "typescript",
    "nodejs",
    "node-rate-limit",
    "sliding-window",
    "fixed-window",
    "token-bucket",
    "leaky-bucket",
    "rate-limiter-flexible",
    "express-slow-down",
    "api-security",
    "request-limiter",
    "http-rate-limit",
    "fast",
    "lightweight",
    "zero-dependency",
    "esm",
    "valkey",
    "valkey-rate-limit",
    "dragonfly",
    "dragonflydb",
    "dragonfly-rate-limit",
    "redis-alternative",
    "mongodb",
    "mongodb-rate-limit",
    "mongoose-rate-limit",
    "mysql",
    "mysql-rate-limit",
    "mysql2-rate-limit",
    "database-rate-limit"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./nest": {
      "types": "./dist/nest.d.ts",
      "import": "./dist/nest.js"
    },
    "./node": {
      "types": "./dist/node.d.ts",
      "import": "./dist/node.js"
    },
    "./fastify": {
      "types": "./dist/fastify.d.ts",
      "import": "./dist/fastify.js"
    },
    "./hono": {
      "types": "./dist/hono.d.ts",
      "import": "./dist/hono.js"
    },
    "./stores/memory": {
      "types": "./dist/stores/memory.d.ts",
      "import": "./dist/stores/memory.js"
    },
    "./stores/sqlite": {
      "types": "./dist/stores/sqlite.d.ts",
      "import": "./dist/stores/sqlite.js"
    },
    "./stores/redis": {
      "types": "./dist/stores/redis.d.ts",
      "import": "./dist/stores/redis.js"
    },
    "./stores/postgres": {
      "types": "./dist/stores/postgres.d.ts",
      "import": "./dist/stores/postgres.js"
    },
    "./stores/valkey": {
      "types": "./dist/stores/valkey.d.ts",
      "import": "./dist/stores/valkey.js"
    },
    "./stores/dragonfly": {
      "types": "./dist/stores/dragonfly.d.ts",
      "import": "./dist/stores/dragonfly.js"
    },
    "./stores/mongodb": {
      "types": "./dist/stores/mongodb.d.ts",
      "import": "./dist/stores/mongodb.js"
    },
    "./stores/mysql": {
      "types": "./dist/stores/mysql.d.ts",
      "import": "./dist/stores/mysql.js"
    },
    "./loggers/console": {
      "types": "./dist/loggers/console.d.ts",
      "import": "./dist/loggers/console.js"
    },
    "./loggers/pino": {
      "types": "./dist/loggers/pino.d.ts",
      "import": "./dist/loggers/pino.js"
    },
    "./loggers/winston": {
      "types": "./dist/loggers/winston.d.ts",
      "import": "./dist/loggers/winston.js"
    }
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "scripts": {
    "build": "tsc",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "test": "vitest run",
    "test:watch": "vitest"
  },
  "dependencies": {
    "@joint-ops/hitlimit-types": "1.5.0"
  },
  "peerDependencies": {
    "@nestjs/common": ">=8.0.0",
    "@nestjs/core": ">=8.0.0",
    "better-sqlite3": ">=9.0.0",
    "fastify": ">=4.0.0",
    "fastify-plugin": ">=4.0.0",
    "hono": ">=4.0.0",
    "ioredis": ">=5.0.0",
    "mongodb": ">=6.0.0",
    "mysql2": ">=3.0.0",
    "pg": ">=8.0.0",
    "pino": ">=8.0.0",
    "winston": ">=3.0.0"
  },
  "peerDependenciesMeta": {
    "@nestjs/common": {
      "optional": true
    },
    "@nestjs/core": {
      "optional": true
    },
    "fastify": {
      "optional": true
    },
    "fastify-plugin": {
      "optional": true
    },
    "hono": {
      "optional": true
    },
    "better-sqlite3": {
      "optional": true
    },
    "ioredis": {
      "optional": true
    },
    "mongodb": {
      "optional": true
    },
    "mysql2": {
      "optional": true
    },
    "pg": {
      "optional": true
    },
    "pino": {
      "optional": true
    },
    "winston": {
      "optional": true
    }
  },
  "devDependencies": {
    "@hono/node-server": "^1.19.9",
    "@nestjs/common": "^10.0.0",
    "@nestjs/core": "^10.0.0",
    "@nestjs/platform-express": "^10.0.0",
    "@nestjs/testing": "^10.0.0",
    "@types/better-sqlite3": "^7.6.0",
    "@types/express": "^4.17.21",
    "@types/node": "^20.0.0",
    "@types/pg": "^8.11.0",
    "@types/supertest": "^6.0.0",
    "better-sqlite3": "^11.0.0",
    "express": "^4.18.0",
    "fastify": "^5.7.4",
    "fastify-plugin": "^5.1.0",
    "hono": "^4.11.9",
    "ioredis": "^5.3.0",
    "mongodb": "^6.21.0",
    "mysql2": "^3.18.2",
    "pg": "^8.13.0",
    "pino": "^10.3.0",
    "reflect-metadata": "^0.2.0",
    "rxjs": "^7.8.0",
    "supertest": "^7.0.0",
    "typescript": "^5.3.0",
    "vitest": "^2.0.0",
    "winston": "^3.19.0"
  }
}
