Files
basango/apps/crawler/package.json
T

34 lines
884 B
JSON

{
"dependencies": {
"@basango/domain": "workspace:*",
"@basango/encryption": "workspace:*",
"@basango/logger": "workspace:*",
"bullmq": "^4.18.3",
"date-fns": "catalog:",
"ioredis": "^5.8.2",
"node-html-parser": "^7.0.1",
"turndown": "^7.2.2",
"zod": "catalog:"
},
"devDependencies": {
"@types/turndown": "^5.0.6",
"vitest": "^4.0.7"
},
"imports": {
"#crawler/*": "./src/*"
},
"name": "@basango/crawler",
"private": true,
"scripts": {
"clean": "rm -rf .turbo node_modules",
"crawler:async": "bun run src/scripts/async.ts",
"crawler:push": "bun run src/scripts/push.ts",
"crawler:sync": "bun run src/scripts/sync.ts",
"crawler:worker": "bun run src/scripts/worker.ts",
"dev": "bun run src/scripts/worker.ts",
"test": "vitest --run",
"typecheck": "tsc --noEmit"
},
"type": "module"
}