-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 824 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 824 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
{
"name": "aniketh-resume-cli",
"version": "1.0.0",
"description": "Aniketh's resume in the terminal",
"main": "dist/index.js",
"bin": {
"aniketh-resume": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "echo #!/usr/bin/env node>temp.js && type temp.js dist\\index.js > dist\\index.temp.js && move /Y dist\\index.temp.js dist\\index.js && del temp.js"
},
"author": "Aniketh Deb",
"license": "MIT",
"type": "module",
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.14.1",
"@types/qrcode-terminal": "^0.12.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"chalk": "^5.4.1",
"gradient-string": "^3.0.0",
"inquirer": "^12.5.2",
"qrcode-terminal": "^0.12.0"
}
}