mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 16:46:24 +00:00
26 lines
548 B
JSON
26 lines
548 B
JSON
{
|
|
"name": "jobindex-cli",
|
|
"version": "1.0.0",
|
|
"description": "CLI for searching jobs on Jobindex.dk",
|
|
"type": "module",
|
|
"main": "src/cli.ts",
|
|
"bin": {
|
|
"jobindex": "src/cli.ts"
|
|
},
|
|
"scripts": {
|
|
"start": "bun run src/cli.ts",
|
|
"test": "bun test --timeout 30000",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@bunli/core": "latest",
|
|
"@bunli/utils": "latest",
|
|
"node-html-parser": "^6.1.13",
|
|
"zod": "^3.23.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.4.0",
|
|
"@types/bun": "latest"
|
|
}
|
|
}
|