{
  "name": "@anchan828/nest-redlock",
  "version": "0.4.26",
  "description": "This is a [Nest](https://github.com/nestjs/nest) implementation of the redlock algorithm for distributed redis locks.",
  "homepage": "https://github.com/anchan828/nest-redlock#readme",
  "bugs": {
    "url": "https://github.com/anchan828/nest-redlock/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/anchan828/nest-redlock.git"
  },
  "license": "MIT",
  "author": "anchan828 <anchan828@gmail.com>",
  "main": "dist/cjs/index.js",
  "types": "dist/cjs/index.d.ts",
  "scripts": {
    "build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
    "copy:license": "cp ../../LICENSE ./",
    "lint": "TIMING=1 eslint '**/*.ts'",
    "lint:fix": "npm run lint -- --fix",
    "test": "jest --coverage --runInBand --detectOpenHandles",
    "test:debug": "node --inspect-brk ../../node_modules/jest/bin/jest --runInBand --logHeapUsage",
    "test:watch": "npm run test -- --watch",
    "watch": "tsc --watch"
  },
  "dependencies": {
    "redlock": "^5.0.0-beta.2"
  },
  "devDependencies": {
    "@nestjs/common": "11.1.9",
    "@nestjs/core": "11.1.9",
    "@nestjs/platform-express": "11.1.9",
    "@nestjs/testing": "11.1.9",
    "ioredis": "5.8.2",
    "reflect-metadata": "0.2.2",
    "rxjs": "7.8.2"
  },
  "volta": {
    "node": "22.21.1"
  },
  "publishConfig": {
    "access": "public"
  },
  "packageManager": "npm@11.6.4",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      },
      "types": "./dist/cjs/index.d.ts",
      "default": "./dist/cjs/index.js"
    }
  },
  "gitHead": "3b7a9dd1b855784f61cc92e1d7d700b5281d4d33"
}