-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.98 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "gitlexjs",
"version": "0.2.1",
"bin": {
"gitlex": "./dist/index.js"
},
"description": "An AI-powered tool designed to generate and enhance Git commit messages, simplifying the developer's workflow and ensuring meaningful version histories.",
"main": "./dist/index.js",
"engines": {
"node": ">=16"
},
"types": "./dist/index.d.ts",
"scripts": {
"start": "node ./dist/index.js",
"build": "rollup -c",
"lint": "eslint './src/**/*.ts'",
"test": "jest",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"auto-changelog": {
"breakingPattern": "BREAKING CHANGE:"
},
"keywords": [
"git",
"commit",
"messages",
"AI",
"OpenAI",
"GPT",
"automation",
"developer-tools",
"code-diff",
"git-helpers",
"versioning",
"commit-history",
"GitLex",
"natural-language-processing",
"NLP",
"machine-learning"
],
"author": "Ryan Jordan",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"clipboardy": "^3.0.0",
"diff-match-patch": "^1.0.5",
"inquirer": "^9.2.10",
"isomorphic-git": "^1.24.5",
"openai": "^3.3.0",
"ora": "^7.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.2",
"@types/diff": "^5.0.3",
"@types/diff-match-patch": "^1.0.32",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.47.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"esmock": "^2.3.6",
"jest": "^29.6.2",
"rollup": "^3.28.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}