feat(crawler): improve async tasks integration

This commit is contained in:
Bernard Ngandu
2025-10-31 23:30:24 +02:00
parent 113941077f
commit 69303cb075
8 changed files with 163 additions and 58 deletions
+11 -10
View File
@@ -5,15 +5,16 @@
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -b",
"test": "vitest --run"
},
"dependencies": {
"bullmq": "^4.17.0",
"date-fns": "^3.6.0",
"ioredis": "^5.3.2",
"tiktoken": "^1.0.14",
"zod": "^4.0.0"
"scripts": {
"build": "tsc -b",
"test": "vitest --run"
},
"dependencies": {
"@basango/logger": "workspace:*",
"bullmq": "^4.17.0",
"date-fns": "^3.6.0",
"ioredis": "^5.3.2",
"tiktoken": "^1.0.14",
"zod": "^4.0.0"
}
}