-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (36 loc) · 903 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (36 loc) · 903 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
{
"name": "commitgen",
"version": "0.1.0",
"description": "Local-first AI commit message generator",
"main": "dist/index.js",
"bin": {
"commitgen": "dist/cli/main.js",
"cgen": "dist/cli/main.js"
},
"scripts": {
"build": "tsc && chmod +x dist/cli/main.js",
"dev": "ts-node src/cli/main.ts",
"lint": "tsc --noEmit",
"format": "prettier --write 'src/**/*.ts'",
"type-check": "tsc --noEmit"
},
"keywords": ["git", "commit", "ai", "llm", "ollama"],
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"dotenv": "^16.3.1",
"enquirer": "^2.4.1",
"minimatch": "^9.0.0",
"ora": "^7.0.1",
"figlet": "^1.7.0",
"gradient-string": "^2.0.2"
},
"devDependencies": {
"@types/node": "^20.5.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.2.0"
}
}