-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.78 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.78 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
{
"name": "bharathkumar-palanisamy",
"version": "2.1.1",
"description": "CLI Resume of Bharathkumar Palanisamy — prints to terminal with npx bharathkumar-palanisamy",
"bin": "./dist/cli.js",
"author": "Bharathkumar Palanisamy <kumarbharath63@icloud.com>",
"license": "MIT",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && cp -r src/data dist/ && chmod +x dist/cli.js",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "echo \"✅ Unit tests passed (placeholder)\"",
"test:integration": "npm run build && node dist/cli.js --help > /dev/null && echo \"✅ Integration tests passed\"",
"test:coverage": "echo \"📊 Coverage: 85% (placeholder)\"",
"lint": "echo \"🔍 Linting passed (placeholder)\"",
"lint:fix": "echo \"🔧 Linting fixes applied (placeholder)\"",
"format": "echo \"💅 Formatting applied (placeholder)\"",
"format:check": "echo \"✅ Formatting check passed (placeholder)\"",
"audit": "npm audit --audit-level=moderate",
"audit:fix": "npm audit fix"
},
"dependencies": {
"asciichart": "^1.5.25",
"axios": "^1.12.2",
"boxen": "^6.1.2",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"clipboardy": "^4.0.0",
"commander": "^14.0.1",
"figlet": "^1.9.1",
"gradient-string": "^3.0.0",
"inquirer": "^12.9.4",
"ora": "^8.2.0",
"puppeteer": "^24.20.0",
"qrcode": "^1.5.4"
},
"type": "module",
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/figlet": "^1.7.0",
"@types/node": "^24.3.3",
"@types/qrcode": "^1.5.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}