-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.22 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
{
"name": "@michaelrwalker/step-queue",
"version": "0.3.1",
"description": "An extremely type-safe, step-based wrapper around BullMQ.",
"type": "module",
"main": "main.ts",
"types": "main.ts",
"exports": {
".": "./main.ts"
},
"files": [
"modules",
"main.ts",
"README.md"
],
"scripts": {
"test": "node --test --experimental-transform-types --disable-warning=ExperimentalWarning \"tests/**/*.test.ts\"",
"typecheck": "tsc --noEmit",
"format": "biome format --write",
"fix": "biome lint --write",
"release": "release-it"
},
"keywords": [
"bullmq",
"queue",
"typescript",
"jobs",
"steps",
"workflow"
],
"peerDependencies": {
"bullmq": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@types/node": "^26.1.1",
"bullmq": "^5.81.0",
"release-it": "^20.2.1",
"typescript": "^5.9.3",
"zod": "^4.4.3"
},
"dependencies": {
"@standard-schema/spec": "^1.1.0"
},
"publishConfig": {
"access": "public"
},
"release-it": {
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
"git": {
"commit": true,
"tag": true,
"push": true,
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true
}
}
}