{
  "name": "nestjs-sliding-window-throttler",
  "version": "1.0.1",
  "description": "True sliding window rate limiter for NestJS with precise timestamp-based tracking using Redis Functions",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*.js",
    "dist/**/*.d.ts",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "docs/**/*.md",
    "examples/basic-usage/**/*",
    "examples/opentelemetry-integration/**/*",
    "examples/custom-observability/**/*"
  ],
  "scripts": {
    "build": "npm run clean && tsc --project tsconfig.prod.json",
    "build:dev": "tsc --project tsconfig.dev.json",
    "build:watch": "tsc --project tsconfig.dev.json --watch",
    "test": "jest",
    "test:unit": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "npm run test:coverage:unit && npm run test:coverage:integration && npm run test:coverage:e2e && node scripts/combine-coverage.js",
    "test:coverage:unit": "jest --coverage",
    "test:coverage:integration": "jest --config jest.integration.config.js --coverage",
    "test:coverage:e2e": "jest --config jest.e2e.config.js --coverage",
    "test:integration": "jest --config jest.integration.config.js",
    "test:e2e": "jest --config jest.e2e.config.js",
    "test:all": "npm run test && npm run test:integration && npm run test:e2e",
    "test:ci": "npm run test:coverage",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\"",
    "clean": "rimraf dist",
    "clean:cache": "rimraf .jest-cache .jest-cache-integration .jest-cache-e2e coverage",
    "docs": "typedoc --plugin typedoc-plugin-markdown --out dist/docs",
    "docs:html": "typedoc --out dist/docs-html",
    "docs:serve": "typedoc --watch",
    "docs:json": "typedoc --json dist/docs-json/api.json",
    "docs:markdown": "typedoc --plugin typedoc-plugin-markdown --out dist/docs-markdown",
    "prepublishOnly": "npm run clean && npm run build",
    "prepack": "npm run build",
    "size": "npm pack --dry-run",
    "size:check": "npm run build && npm pack --dry-run 2>&1 | grep -E 'package size|unpacked size'",
    "analyze": "npm run build && find dist -name '*.js' -exec wc -c {} + | sort -n",
    "validate": "npm run lint && npm run typecheck",
    "publish:dry-run": "npm publish --dry-run",
    "release": "npm run validate && npm run build && npm publish"
  },
  "keywords": [
    "nestjs",
    "throttler",
    "rate-limiting",
    "redis",
    "sliding-window",
    "rate-limiter",
    "typescript",
    "high-performance",
    "redis-functions",
    "atomic-operations",
    "true-sliding-window",
    "precise-rate-limiting"
  ],
  "author": "Orkun <orkun@email.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/orknist/nestjs-sliding-window-throttler.git"
  },
  "bugs": {
    "url": "https://github.com/orknist/nestjs-sliding-window-throttler/issues"
  },
  "homepage": "https://github.com/orknist/nestjs-sliding-window-throttler#readme",
  "peerDependencies": {
    "@nestjs/common": "^11.1.6",
    "@nestjs/throttler": "^6.4.0",
    "ioredis": "^5.8.0",
    "reflect-metadata": "^0.2.2"
  },
  "devDependencies": {
    "@nestjs/common": "^11.1.6",
    "@nestjs/core": "^11.1.6",
    "@nestjs/platform-express": "^11.1.6",
    "@nestjs/testing": "^11.1.6",
    "@nestjs/throttler": "^6.4.0",
    "@types/express": "^5.0.3",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.6.1",
    "@types/supertest": "^6.0.3",
    "@typescript-eslint/eslint-plugin": "^8.45.0",
    "@typescript-eslint/parser": "^8.45.0",
    "eslint": "^9.36.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "eslint-plugin-unused-imports": "^4.2.0",
    "ioredis": "^5.8.0",
    "jest": "^30.2.0",
    "nyc": "^17.1.0",
    "prettier": "^3.6.2",
    "reflect-metadata": "^0.2.2",
    "rimraf": "^6.0.1",
    "supertest": "^7.1.4",
    "ts-jest": "^29.4.4",
    "ts-node": "^10.9.2",
    "typedoc": "^0.28.13",
    "typedoc-plugin-markdown": "^4.9.0",
    "typescript": "^5.9.3"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}