-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.07 KB
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
30
31
32
33
34
35
{
"name": "job-apply-ai",
"version": "0.1.0",
"description": "AI-powered job application pipeline — search, tailor resumes, auto-fill ATS forms",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ShipItAndPray/job-apply-ai.git"
},
"author": "ShipItAndPray",
"license": "MIT",
"scripts": {
"build": "tsc",
"pull": "node scripts/greenhouse-pull.cjs",
"pull:today": "node scripts/greenhouse-pull.cjs --days 1",
"filter": "node scripts/greenhouse-filter.cjs",
"apply": "node scripts/greenhouse-apply.cjs --dry-run",
"apply:submit": "node scripts/greenhouse-apply.cjs",
"pipeline": "node scripts/greenhouse-pull.cjs && node scripts/greenhouse-filter.cjs && echo 'Ready to apply. Run: npm run apply'"
},
"dependencies": {
"better-sqlite3": "^9.4.3",
"linkedin-jobs-api": "^1.0.7",
"playwright": "^1.42.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/node": "^20.11.24",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=20.0.0"
}
}