-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.73 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.73 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "autotailor",
"version": "1.2.3",
"description": "AI-powered automated CV tailoring and job application system. Supports Claude, ChatGPT, and Gemini.",
"main": "dist/index.js",
"bin": {
"autotailor": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
".env.example"
],
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "nodemon --exec ts-node src/server.ts",
"tailor": "ts-node src/cli.ts",
"tailor:build": "npm run build && node dist/cli.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"cv",
"resume",
"tailoring",
"job-application",
"ai",
"claude",
"anthropic",
"openai",
"chatgpt",
"gemini",
"google-ai",
"latex",
"cli",
"automation",
"job-search",
"cover-letter"
],
"author": "Nour Nafea",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nournafea/autotailor.git"
},
"bugs": {
"url": "https://github.com/nournafea/autotailor/issues"
},
"homepage": "https://github.com/nournafea/autotailor#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.0",
"@google/generative-ai": "^0.24.1",
"chalk": "^5.6.2",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"fs-extra": "^11.3.2",
"inquirer": "^13.0.1",
"multer": "^2.0.2",
"nodemailer": "^7.0.11",
"openai": "^6.9.1",
"ora": "^9.0.0"
},
"devDependencies": {
"@types/express": "^5.0.5",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/multer": "^2.0.0",
"@types/nodemailer": "^7.0.4",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}