mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 16:46:24 +00:00
Matches the jobindex-search convention; follow-up noted in #35 review. Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
21 lines
577 B
JSON
21 lines
577 B
JSON
{
|
|
"name": "linkedin-cli",
|
|
"version": "1.0.0",
|
|
"description": "CLI for searching jobs on LinkedIn's public job listings, for any country/region (and remote) — no authentication, zero runtime dependencies. Personal use only (LinkedIn ToS).",
|
|
"type": "module",
|
|
"main": "src/cli.ts",
|
|
"bin": {
|
|
"linkedin-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"
|
|
}
|
|
}
|