-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.86 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.86 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
{
"name": "@falcondev-oss/workflow",
"type": "module",
"version": "0.11.0",
"packageManager": "pnpm@10.28.2",
"description": "Simple type-safe queue worker with durable execution using Redis.",
"license": "MIT",
"repository": "github:falcondev-oss/workflow",
"bugs": {
"url": "https://github.com/falcondev-oss/workflow/issues"
},
"keywords": [
"queue",
"worker",
"bullmq",
"redis",
"groupmq",
"durable-execution",
"tracing",
"typescript"
],
"exports": {
".": "./src/index.ts"
},
"files": [
"dist"
],
"engines": {
"node": "24",
"pnpm": "10"
},
"scripts": {
"build": "tsdown",
"type-check": "tsc --noEmit",
"lint": "eslint --cache . && prettier --check --cache .",
"lint:ci": "eslint --cache --cache-strategy content . && prettier --check --cache --cache-strategy content .",
"lint:fix": "eslint --fix --cache . && prettier --write --cache ."
},
"dependencies": {
"@antfu/utils": "^9.3.0",
"@opentelemetry/api": "^1.9.0",
"@standard-schema/spec": "^1.1.0",
"@types/node": "^25.1.0",
"exit-hook": "^5.0.1",
"groupmq": "^1.1.1-next.2",
"ioredis": "^5.9.2",
"p-mutex": "^1.0.0",
"p-retry": "^7.1.1",
"superjson": "^2.2.6",
"type-fest": "^5.4.2"
},
"devDependencies": {
"@falcondev-oss/configs": "^5.0.2",
"@testcontainers/redis": "^11.11.0",
"arktype": "^2.1.29",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"rolldown": "1.0.0-rc.2",
"tsdown": "0.19.0-beta.5",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"zod": "^4.3.6"
},
"publishConfig": {
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./package.json": "./package.json"
}
}
}