-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 980 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 980 Bytes
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
{
"name": "node-redisson",
"description": "Distributed lock with Redis implementation for Node.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smilecc/node-redisson.git"
},
"homepage": "https://smilecc.github.io/node-redisson/",
"keywords": [
"nodejs",
"redlock",
"distributed",
"lock",
"redis",
"redisson"
],
"type": "commonjs",
"packageManager": "pnpm@9.10.0",
"version": "1.0.4",
"files": [
"dist/",
"README.md",
"README_cn.md"
],
"engines": {
"node": ">=16"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "pnpm dlx rimraf dist && tsc -p tsconfig.build.json",
"docs:dev": "pnpm -C packages/docs dev",
"docs:build": "pnpm -C packages/docs build"
},
"peerDependencies": {
"typescript": "^5.7.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
}
}