-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.24 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.24 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
{
"name": "groupmq",
"version": "1.1.0",
"description": "Per-group FIFO queue on Redis with visibility timeouts and retries.",
"license": "MIT",
"private": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"author": "OpenPanel.dev <hello@openpanel.dev> (https://openpanel.dev)",
"repository": {
"type": "git",
"url": "https://github.com/Openpanel-dev/groupmq"
},
"bugs": {
"url": "https://github.com/Openpanel-dev/groupmq/issues"
},
"homepage": "https://github.com/Openpanel-dev/groupmq#readme",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsdown src/index.ts --format esm --format cjs --dts --sourcemap && node scripts/copy-lua.mjs",
"prebuild": "pnpm test:lua",
"test": "vitest run --no-file-parallelism",
"test:lua": "node scripts/validate-lua-scripts.js",
"test:many": "for i in {1..200}; do pnpm run test; done",
"dev:test": "vitest --watch",
"monitor": "jiti cli.ts",
"benchmark": "jiti benchmark/benchmark.ts",
"benchmark:both": "pnpm benchmark --mq both --jobs 5000 --workers 4 --job-type cpu --multi-process && pnpm format:fix -- benchmark/results",
"benchmark:both:empty": "pnpm benchmark --mq both --jobs 5000 --workers 4 --job-type empty --multi-process && pnpm format:fix -- benchmark/results",
"benchmark:groupmq": "pnpm benchmark --mq groupmq --jobs 5000 --workers 4 --job-type cpu --multi-process && pnpm format:fix -- benchmark/results",
"benchmark:groupmq:dragonfly": "pnpm benchmark --db dragonfly --mq groupmq --jobs 5000 --workers 10 --job-type cpu --multi-process && pnpm format:fix -- benchmark/results",
"benchmark:bullmq": "pnpm benchmark --mq bullmq --jobs 5000 --workers 4 --job-type cpu --multi-process && pnpm format:fix -- benchmark/results",
"format": "biome format .",
"format:fix": "biome format --write",
"format:fixall": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write --unsafe .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"redis",
"queue",
"fifo",
"worker",
"node",
"typescript"
],
"dependencies": {
"cron-parser": "^4.9.0"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@bull-board/api": "^6.13.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.5",
"@semantic-release/npm": "^11.0.2",
"@types/node": "^20.12.12",
"@types/pidusage": "^2.0.5",
"bullmq": "^5.58.7",
"commander": "^14.0.1",
"conventional-changelog-conventionalcommits": "^7",
"ioredis": "^5.4.1",
"jiti": "^2.5.1",
"pidusage": "^4.0.1",
"pino": "^9.12.0",
"pretty-ms": "^9.3.0",
"semantic-release": "^23.0.0",
"tsdown": "^0.15.4",
"typescript": "^5.6.2",
"vitest": "^2.0.5",
"winston": "^3.18.3"
},
"peerDependencies": {
"ioredis": ">=5"
}
}