-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.42 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
{
"name": "generate-commit-message",
"version": "1.1.0",
"description": "cli tool for generating commit messages",
"keywords": [
"ai",
"git",
"openai",
"commit message",
"generate commit",
"commit message generator",
"generate commit message"
],
"homepage": "https://github.com/derricknjeru/generate-commit-message#readme",
"repository": {
"type": "git",
"url": "https://github.com/derricknjeru/generate-commit-message.git"
},
"license": "ISC",
"author": "derrick njeru",
"bin": {
"g-commit": "./bin/g-commit.js"
},
"scripts": {
"build": "tsc && webpack",
"prettify": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"dotenv": "^16.0.3",
"inquirer": "^9.1.4",
"openai": "^3.1.0",
"yargs": "^17.6.2",
"chalk": "^5.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.13.0",
"@types/yargs": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"babel-loader": "^9.1.2",
"eslint": "^8.34.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "2.8.4",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"engines": {
"node": ">=14.0.0"
}
}