-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.79 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.79 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@boringnode/queue",
"description": "A simple and efficient queue system for Node.js applications",
"version": "0.4.1",
"main": "build/index.js",
"type": "module",
"files": [
"build"
],
"exports": {
".": "./build/index.js",
"./drivers/*": "./build/src/drivers/*.js",
"./contracts/*": "./build/src/contracts/*.js",
"./types": "./build/src/types/index.js"
},
"scripts": {
"benchmark": "node --import=@poppinss/ts-exec benchmark/run.ts",
"benchmark:quick": "node --import=@poppinss/ts-exec benchmark/run.ts --quick",
"benchmark:full": "node --import=@poppinss/ts-exec benchmark/run.ts --full",
"build": "yarn clean && tsup-node",
"clean": "del-cli build",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --check .",
"format:fix": "oxfmt --write .",
"prepublishOnly": "yarn build",
"release": "yarn dlx release-it",
"test": "node --import=@poppinss/ts-exec --enable-source-maps bin/test.ts --reporters=dot",
"test:coverage": "c8 yarn test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@lukeed/ms": "^2.0.2",
"@poppinss/utils": "^7.0.1",
"cron-parser": "^5.5.0"
},
"devDependencies": {
"@adonisjs/tsconfig": "^2.0.0",
"@japa/assert": "^4.2.0",
"@japa/expect-type": "^2.0.4",
"@japa/file-system": "^3.0.0",
"@japa/runner": "^5.3.0",
"@poppinss/ts-exec": "^1.4.4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.11.0",
"@types/pg": "^8.18.0",
"better-sqlite3": "^12.6.2",
"bullmq": "^5.70.1",
"c8": "^11.0.0",
"del-cli": "^7.0.0",
"ioredis": "^5.10.0",
"knex": "^3.1.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.15.0",
"pg": "^8.19.0",
"release-it": "^19.2.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"ioredis": "^5.0.0",
"knex": "^3.0.0"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
},
"knex": {
"optional": true
}
},
"author": "Romain Lanz <romain.lanz@pm.me>",
"license": "MIT",
"homepage": "https://github.com/boringnode/queue#readme",
"bugs": {
"url": "https://github.com/boringnode/queue/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/boringnode/queue.git"
},
"keywords": [
"queue",
"job",
"task",
"worker",
"redis"
],
"publishConfig": {
"access": "public",
"tag": "latest"
},
"release-it": {
"git": {
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}",
"web": true
}
},
"packageManager": "yarn@4.12.0",
"engines": {
"node": ">=24.0.0"
}
}