* feat(hiringcafe): register new source across shared/server/client enums * feat(hiringcafe-extractor): add browser-backed Hiring Cafe dataset extractor * feat(orchestrator): integrate Hiring Cafe discovery service into pipeline * feat(orchestrator-ui): add Hiring Cafe to source availability and run estimates * chore(hiringcafe): wire CI/docker and add extractor documentation * chore(format): apply biome formatting for Hiring Cafe integration * add original websites * coomints * number or null
27 lines
645 B
JSON
27 lines
645 B
JSON
{
|
|
"name": "hiringcafe-extractor",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"description": "Hiring Cafe extractor - fetches jobs via browser-backed API requests",
|
|
"main": "src/main.ts",
|
|
"dependencies": {
|
|
"camoufox-js": "^0.8.0",
|
|
"job-ops-shared": "^1.0.0",
|
|
"playwright": "^1.57.0",
|
|
"tsx": "^4.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.0.0",
|
|
"typescript": "~5.9.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"impit-linux-x64-gnu": "^0.1.0"
|
|
},
|
|
"scripts": {
|
|
"start": "tsx src/main.ts",
|
|
"start:dev": "tsx src/main.ts",
|
|
"check:types": "tsc --noEmit",
|
|
"get-binaries": "camoufox-js fetch"
|
|
}
|
|
}
|