-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.83 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.83 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
{
"name": "just-commit",
"version": "2.0.0",
"description": "An automated CLI tool for generating meaningful Git commit messages with AI, following Conventional Commits. Ideal for developers seeking quick, clear, and consistent version control.",
"main": "index.js",
"type": "module",
"bin": {
"just-commit": "bin/index.js"
},
"scripts": {
"start": "node bin/index.js",
"lint": "eslint .",
"format": "prettier --write .",
"lint:fix": "eslint . --fix && prettier --write .",
"test": "mocha --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thenatarizkie/just-commit.git"
},
"keywords": [
"natarizkie",
"just-commit",
"git-tools",
"automated-commit",
"conventional-commits",
"gemini-ai",
"cli"
],
"author": "Natarizkie",
"license": "ISC",
"bugs": {
"url": "https://github.com/thenatarizkie/just-commit/issues"
},
"homepage": "https://github.com/thenatarizkie/just-commit#readme",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@jsdevtools/npm-publish": "^3.1.1",
"chai": "^5.1.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"mocha": "^11.0.1",
"prettier": "^3.4.2",
"yargs": "^17.7.2"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"chalk": "^5.4.1",
"child_process": "^1.0.2",
"dotenv": "^16.4.5",
"dotenv-flow": "^4.1.0",
"execa": "^9.5.2",
"minimist": "^1.2.8",
"ora": "^8.2.0",
"process": "^0.11.10",
"prompts": "^2.4.2",
"translate-google": "^1.5.0"
}
}