refactor: centralize crawler schemas and json config

This commit is contained in:
Bernard Ngandu
2025-10-28 06:42:45 +02:00
parent 799cda6e06
commit eae1ede15f
19 changed files with 1052 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"name": "@basango/crawler",
"version": "0.1.0",
"private": true,
"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"
}
}