-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.86 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.86 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
65
66
67
68
69
{
"name": "@laststance/git-gpt-commit",
"version": "0.11.0",
"description": "An AI-powered Git extension that generates commit messages using OpenAI's GPT models (GPT-3 to GPT-5), streamlining the commit process and improving developer productivity.",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "husky",
"prettier": "prettier --ignore-unknown --write .",
"test": "vitest run",
"lint": "eslint . -c eslint.config.js",
"lint:fix": "eslint . -c eslint.config.js --fix",
"push-release-commit": "push-release-commit"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/laststance/git-gpt-commit.git"
},
"files": [
"README.md",
"index.js",
"src",
"utils"
],
"author": "Ryota Murakami <dojce1048@gmail.com> (https://github.com/ryota-murakami)",
"license": "MIT",
"bugs": {
"url": "https://github.com/laststance/git-commit-gpt/issues"
},
"homepage": "https://github.com/laststance/git-commit-gpt#readme",
"dependencies": {
"commander": "^10.0.0",
"dotenv": "^16.0.3",
"openai": "^5.0.2",
"prompts": "^2.4.2"
},
"bin": {
"git-gpt": "./index.js"
},
"volta": {
"node": "24.13.0"
},
"devDependencies": {
"@laststance/npm-publish-tool": "^1.6.9",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitest/coverage-v8": "3.1.4",
"@vitest/ui": "^3.1.2",
"eslint": "^9.39.2",
"eslint-config-ts-prefixer": "^4.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.8.1",
"release-it": "^19.2.4",
"typescript": "^5.8.3",
"vite": "^6.3.3",
"vitest": "^3.1.2"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"unrs-resolver"
]
},
"packageManager": "pnpm@10.28.2"
}