-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 827 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 827 Bytes
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
{
"name": "@alismx/gitmsg",
"version": "0.0.2",
"description": "Use openai to generate commit messages from a diff",
"main": "index.js",
"devDependencies": {
"prettier": "^2.8.8"
},
"dependencies": {
"openai": "^4.82.0",
"minimist": "^1.2.8",
"typescript": "^5.7.3",
"@types/node": "^18.19.74",
"@types/minimist": "^1.2.5"
},
"scripts": {
"build": "npx tsc",
"b": "npx tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/alismx/gitmsg.git"
},
"author": "alismx",
"license": "MIT",
"bugs": {
"url": "https://github.com/alismx/gitmsg/issues"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"homepage": "https://github.com/alismx/gitmsg#readme"
}