mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 00:26:26 +00:00
21 lines
613 B
JSON
21 lines
613 B
JSON
{
|
|||
|
|
"name": "freehire-cli",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "CLI for searching the freehire.dev job aggregator's public JSON API across many markets (tech-focused) — no authentication, zero runtime dependencies. Base URL is swappable via FREEHIRE_API_URL for self-hosting.",
|
||
|
|
"type": "module",
|
||
|
|
"main": "src/cli.ts",
|
||
|
|
"bin": {
|
||
|
|
"freehire-search": "src/cli.ts"
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"start": "bun run src/cli.ts",
|
||
|
|
"test": "bun test --timeout 30000",
|
||
|
|
"typecheck": "tsc --noEmit"
|
||
|
|
},
|
||
|
|
"dependencies": {},
|
||
|
|
"devDependencies": {
|
||
|
|
"typescript": "^5.4.0",
|
||
|
|
"@types/bun": "latest"
|
||
|
|
}
|
||
|
|
}
|