-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 KB
/
package.json
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
{
"name": "@upstash/queue",
"description": "A message queue based on Redis streams, without dependencies.",
"module": "./dist/index.mjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"version": "1.0.0",
"keywords": ["redis", "stream", "upstash", "message", "queue"],
"author": "Oguzhan Olguncu <oguzhan@upstash.com>",
"repository": {
"type": "git",
"url": "https://github.com/upstash/queue"
},
"license": "MIT",
"files": ["dist"],
"bugs": {
"url": "https://github.com/upstash/queue/issues"
},
"scripts": {
"test": "bun test src --coverage --bail --timeout 20000",
"fmt": "bunx biome check --apply ./src",
"build": "tsup",
"prepare": "husky install | chmod ug+x .husky/*"
},
"dependencies": {
"@upstash/redis": "1.29.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/uuid": "^9.0.8",
"typescript": "latest",
"@biomejs/biome": "1.6.0",
"bun-types": "latest",
"husky": "^9.0.11",
"tsup": "latest",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0"
}
}