-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 886 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 886 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
{
"name": "bdnd-commitly",
"version": "1.0.0",
"description": "A CLI tool to generate conventional commit messages.",
"packageManager": "pnpm@10.13.1",
"scripts": {
"format": "biome format --write",
"lint": "biome check .",
"lint:fix": "biome check --write",
"test": "echo \"Error: no test specified\" && exit 1",
"type-check": "tsc --noEmit",
"dev": "tsx src/main.ts",
"build": "pkgroll --minify --clean-dist --tsconfig=tsconfig.build.json"
},
"bin": {
"bdnd-commitly": "./dist/main.mjs"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"dotenv": "^17.2.1",
"inquirer": "^12.9.0",
"openai": "^5.11.0",
"simple-git": "^3.28.0"
},
"devDependencies": {
"@biomejs/biome": "2.1.3",
"@types/node": "^24.1.0",
"pkgroll": "^2.15.0",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}