-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 KB
/
package.json
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
{
"name": "commit-message-generator",
"version": "2.1.5",
"license": "MIT",
"description": "A CLI tool to generate commit messages using OpenAI API",
"author": {
"name": "Juhyeon Lee",
"email": "[email protected]",
"url": "https://github.com/d556f8"
},
"repository": {
"type": "git",
"url": "git://github.com/d556f8/commit-message-generator.git"
},
"main": "./dist/index.js",
"bin": {
"cmg": "./dist/index.js"
},
"files": [
"/dist"
],
"scripts": {
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"build": "tsc",
"start": "node ./dist/index.js",
"vMajor": "sh major",
"vMinor": "sh minor",
"vPatch": "sh patch"
},
"devDependencies": {
"@types/node": "^20.6.5",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"commander": "^11.0.0",
"openai": "^4.10.0",
"password-prompt": "^1.1.3",
"path": "^0.12.7"
}
}