-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.77 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.77 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "genai-commit",
"version": "1.12.6",
"description": "AI-powered commit message generator using Claude Code or Cursor CLI",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"genai-commit": "./bin/genai-commit.js"
},
"files": [
"dist",
"bin"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"release": "release-it",
"release:beta": "release-it --preRelease=beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Seungwoo321/genai-commit.git"
},
"bugs": {
"url": "https://github.com/Seungwoo321/genai-commit/issues"
},
"homepage": "https://github.com/Seungwoo321/genai-commit#readme",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"git",
"commit",
"ai",
"claude",
"cursor",
"conventional-commits",
"jira",
"cli",
"commit-message",
"generator",
"genai-commit"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"inquirer": "^9.2.12",
"ora": "^8.0.1",
"simple-git": "^3.22.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@release-it/conventional-changelog": "^10.0.4",
"@types/node": "^20.11.0",
"eslint": "^9.39.4",
"release-it": "^19.2.3",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.59.0",
"vitest": "^1.2.0"
}
}