-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 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
{
"name": "@seyun31/commithelper",
"version": "2.0.0",
"main": "index.js",
"scripts": {
"build": "tsc && mkdir -p dist/src/prompts && cp src/prompts/system-prompt.txt dist/src/prompts/",
"start": "ts-node bin/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"{src,bin}/**/*.ts\"",
"test": "jest"
},
"bin": {
"commitHelper": "./dist/bin/index.js"
},
"keywords": [
"git",
"commit",
"cli",
"conventional-commits"
],
"author": "seyun31",
"license": "ISC",
"description": "Git의 변경사항을 분석하여 commit 메시지를 자동으로 생성하는 도구",
"dependencies": {
"dotenv": "^17.2.3",
"groq-sdk": "^0.37.0",
"inquirer": "^12.6.1",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^15.15.0",
"jest": "^29.5.0",
"prettier": "^3.5.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
}
}