-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.04 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
{
"name": "gittrack",
"version": "0.1.0",
"description": "Track Git repos, analyze commits, generate reports with AI suggestions. Interactive CLI: init, add, sync, report.",
"type": "module",
"main": "dist/cli.js",
"bin": {
"gittrack": "dist/cli.js"
},
"scripts": {
"build": "tsup",
"start": "node dist/cli.js",
"gittrack": "node dist/cli.js",
"sync": "node dist/cli.js sync",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": ["git", "track", "tracker", "cli", "progress"],
"license": "MIT",
"dependencies": {
"@clack/prompts": "^1.0.0",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"js-yaml": "^4.1.0",
"simple-git": "^3.27.0"
},
"optionalDependencies": {
"openai": "^4.0.0",
"@anthropic-ai/sdk": "^0.32.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"tsup": "^8.3.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18"
}
}