UNPKG

@alepha/lock-redis

Version:

Redis implementation for the distributed locking mechanism.

56 lines (55 loc) 1.11 kB
{ "name": "@alepha/lock-redis", "description": "Redis implementation for the distributed locking mechanism.", "version": "0.10.3", "type": "module", "engines": { "node": ">=22.0.0" }, "license": "MIT", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist", "src" ], "dependencies": { "@alepha/core": "0.10.3", "@alepha/lock": "0.10.3", "@alepha/logger": "0.10.3", "@alepha/redis": "0.10.3", "@alepha/topic-redis": "0.10.3" }, "devDependencies": { "@biomejs/biome": "^2.2.5", "tsdown": "^0.15.6", "typescript": "^5.9.3", "vitest": "^3.2.4" }, "scripts": { "test": "vitest run", "lint": "biome check --write --unsafe", "build": "tsdown -c ../../tsdown.config.ts", "check": "tsc" }, "homepage": "https://github.com/feunard/alepha", "repository": { "type": "git", "url": "git+https://github.com/feunard/alepha.git" }, "keywords": [ "alepha", "lock", "distributed", "mutex", "semaphore", "redis" ], "module": "./dist/index.js", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } } }