Files
ai-job-search/.agents/skills/freehire-search/cli/package.json
T

21 lines
613 B
JSON
Raw Normal View History

{
"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": "1.3.14"
}
}