-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.45 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.45 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
{
"name": "@falcondev-oss/queue",
"type": "module",
"version": "0.7.1",
"description": "Type-safe job queues built on BullMQ and Standard Schema.",
"license": "Apache-2.0",
"repository": "github:falcondev-oss/queue",
"bugs": {
"url": "https://github.com/falcondev-oss/queue/issues"
},
"keywords": [
"queue",
"bullmq",
"standard-schema",
"typescript",
"job",
"worker",
"task",
"redis"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"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 ."
},
"peerDependencies": {
"bullmq": "^5.58.7",
"ioredis": "^5.7.0"
},
"dependencies": {
"@standard-schema/spec": "^1.0.0",
"@types/node": "^24.7.0",
"superjson": "^2.2.2"
},
"devDependencies": {
"@falcondev-oss/configs": "^5.0.2",
"eslint": "^9.37.0",
"prettier": "^3.6.2",
"tsdown": "^0.15.6",
"typescript": "^5.9.3"
},
"changelogithub": {
"extends": "gh:falcondev-it/configs/changelogithub"
}
}