{
  "name": "limitngin",
  "version": "2.0.0",
  "description": "Lightweight ESM-only rate limiter middleware for Express with IP and auth-token support",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "jest",
    "prepare": "husky",
    "build": "tsc -p tsconfig.json",
    "test:memory": "node --expose-gc ./node_modules/.bin/jest --runInBand memory.test.ts",
    "test:memory300k": "node --expose-gc ./node_modules/.bin/jest --runInBand memory-300k.test.ts",
    "test:memory500k-token": "node --expose-gc ./node_modules/.bin/jest --runInBand memory-token-bucket-500k.test.ts",
    "test:memory500k-swc": "node --expose-gc ./node_modules/.bin/jest --runInBand memory-sliding-window-500k.test.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/0xv1shal/limitngin.git"
  },
  "keywords": [
    "rate-limiter",
    "rate-limit",
    "rate limiting",
    "throttle",
    "throttling",
    "limiter",
    "middleware",
    "express",
    "express-middleware",
    "nodejs",
    "node",
    "backend",
    "api",
    "ddos-protection",
    "abuse-prevention",
    "request-limit",
    "http"
  ],
  "author": {
    "name": "Vishal Pandey",
    "email": "vp078596@gmail.com",
    "url": "https://github.com/0xv1shal"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/0xv1shal/limitngin/issues"
  },
  "homepage": "https://github.com/0xv1shal/limitngin#readme",
  "devDependencies": {
    "@types/express": "^5.0.5",
    "@types/jest": "^30.0.0",
    "husky": "^9.1.7",
    "jest-html-reporter": "^4.3.0",
    "ts-jest": "^29.4.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "engines": {
    "node": ">=18"
  },
  "sideEffects": false,
  "type": "module",
  "publishConfig": {
  "access": "public"
}, 
  "peerDependencies": {
    "express": "*"
  }
}
