-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1015 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1015 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "downfolio",
"version": "0.1.0",
"description": "AI-powered CLI tool for generating customized resumes and cover letters from markdown templates",
"main": "dist/cli.js",
"bin": {
"downfolio": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc && node dist/cli.js",
"start": "node dist/cli.js",
"watch": "tsc --watch",
"test": "vitest",
"test:watch": "vitest --watch"
},
"keywords": [
"resume",
"cover-letter",
"cli",
"ai",
"markdown",
"job-search"
],
"author": "John P Vajda",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.9.0",
"commander": "^12.1.0",
"dotenv": "^16.4.7",
"execa": "^9.4.0",
"figlet": "^1.7.0",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"marked": "^14.1.0",
"openai": "^6.18.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
}
}