-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.37 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.37 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
62
63
64
{
"name": "git-rewrite-commits",
"version": "0.7.3",
"description": "AI-powered git commit message rewriter using OpenAI - rewrite your entire git history with better conventional commit messages",
"type": "module",
"main": "./dist/index.js",
"bin": {
"git-rewrite-commits": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"git",
"commit",
"conventional-commits",
"openai",
"ai",
"rewrite",
"history",
"cli",
"npx",
"grec",
"git-rewrite-commits"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/f/git-rewrite-commits.git"
},
"bugs": {
"url": "https://github.com/f/git-rewrite-commits/issues"
},
"homepage": "https://github.com/f/git-rewrite-commits#readme",
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/**/*",
"hooks/**/*",
"README.md",
"QUICK_START.md",
"LICENSE"
],
"dependencies": {
"openai": "^4.20.0",
"commander": "^11.1.0",
"chalk": "^5.3.0",
"ora": "^7.0.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.2",
"tsx": "^4.6.2"
},
"publishConfig": {
"access": "public"
}
}