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

25 lines
526 B
JSON

{
"name": "jobnet-cli",
"version": "1.0.0",
"description": "CLI for the Jobnet.dk Danish government job portal API",
"type": "module",
"main": "src/cli.ts",
"bin": {
"jobnet": "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",
"zod": "^3.23.0"
},
"devDependencies": {
"typescript": "^5.4.0",
"@types/bun": "latest"
}
}