-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 815 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "@interchained/job",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Company-led job scout. Netrows LinkedIn searches, resume-enriched LLM drafts, live company context, PDF HITL reports. No LinkedIn automation.",
"author": "Mark Allen Evans <[email protected]> (https://interchained.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/interchained/job"
},
"bin": {
"job": "./job.mjs"
},
"scripts": {
"scan": "node job.mjs scan",
"draft": "node job.mjs draft",
"list": "node job.mjs list",
"report": "node job.mjs report",
"stats": "node job.mjs stats"
},
"dependencies": {
"better-sqlite3": "^11.5.0",
"js-yaml": "^4.1.0",
"mammoth": "^1.12.0",
"pdfkit": "^0.15.0"
}
}