-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.16 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@theprodev/distributed-lock",
"version": "0.3.0",
"description": "A Distributed Locking Mechanism implemented over Redis to provide Mutex in a Microservices Architecture",
"keywords": [
"nodejs",
"redis",
"distributed-systems",
"microservices",
"typescript",
"mutex",
"semaphore",
"distributed-lock",
"nestjs",
"shared-access"
],
"bugs": {
"url": "https://github.com/0xTheProDev/distributed-lock/discussions"
},
"repository": {
"type": "git",
"url": "https://github.com/0xTheProDev/distributed-lock.git"
},
"license": "MIT",
"author": "Progyan Bhattacharya <bprogyan@gmail.com>",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"format": "prettier --check \"./**/*.{cjs,js,json,md,mjs,ts,yaml,yml}\"",
"format:fix": "prettier --write \"./**/*.{cjs,js,json,md,mjs,ts,yaml,yml}\"",
"lint": "eslint \"./**/*.{cjs,js,mjs,ts}\"",
"lint:fix": "eslint --fix \"./**/*.{cjs,js,mjs,ts}\"",
"prepare": "bun run .husky/install.mjs",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:debug": "vitest --inspect --inspect-brk --logHeapUsage --threads=false",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"prettier": "@theprodev/prettier-config",
"dependencies": {
"ioredis": "5.8.2"
},
"devDependencies": {
"@changesets/cli": "2.29.7",
"@swc/core": "1.13.5",
"@theprodev/eslint-config": "0.3.1",
"@theprodev/prettier-config": "0.1.0",
"@theprodev/tsconfigs": "0.3.0",
"@theprodev/tsup-config": "0.4.0",
"@types/node": "24.9.1",
"@vitest/coverage-v8": "4.0.1",
"check-yarn-lock": "0.2.1",
"eslint": "9.38.0",
"husky": "9.1.7",
"lint-staged": "16.2.6",
"prettier": "3.6.2",
"sort-package-json": "3.4.0",
"source-map-support": "0.5.21",
"tsup": "8.5.0",
"typescript": "5.9.3",
"unplugin-swc": "1.5.8",
"vite-tsconfig-paths": "5.1.4",
"vitest": "4.0.1"
},
"packageManager": "yarn@1.22.0",
"engines": {
"node": ">= 20"
},
"publishConfig": {
"access": "public"
}
}