forked from upstash/lock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 747 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 747 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
{
"name": "@upstash/lock",
"description": "A distributed lock implementation using Upstash Redis",
"module": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"version": "0.2.0",
"keywords": ["redis", "lock", "upstash", "redlock"],
"author": "Meshan Khosla <meshan@upstash.com>",
"license": "MIT",
"files": ["dist"],
"scripts": {
"build": "tsup",
"test": "bun test src --coverage",
"fmt": "bunx @biomejs/biome check --apply ."
},
"devDependencies": {
"@biomejs/biome": "1.3.1",
"@types/node": "^20.8.9",
"@upstash/redis": "^1.24.1",
"bun-types": "^1.0.7",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}