-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.05 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.05 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
{
"name": "career-ops",
"version": "1.0.0",
"description": "AI-powered job search pipeline for Claude Code and GitHub Copilot",
"scripts": {
"verify": "node verify-pipeline.mjs",
"verify:copilot": "node verify-copilot-migration.mjs",
"verify:all": "node verify-copilot-migration.mjs && node verify-pipeline.mjs",
"normalize": "node normalize-statuses.mjs",
"dedup": "node dedup-tracker.mjs",
"merge": "node merge-tracker.mjs",
"pdf": "node generate-pdf.mjs",
"sync-check": "node cv-sync-check.mjs",
"update:check": "node update-system.mjs check",
"update": "node update-system.mjs apply",
"rollback": "node update-system.mjs rollback"
},
"keywords": ["ai", "job-search", "claude-code", "github-copilot", "career", "automation"],
"author": "Shreyas Suvarna (https://github.com/ORION2809)",
"homepage": "https://github.com/ORION2809/carrer-ops",
"repository": {
"type": "git",
"url": "https://github.com/ORION2809/carrer-ops"
},
"license": "MIT",
"dependencies": {
"playwright": "^1.58.1"
}
}