-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
124 lines (124 loc) · 3.01 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"publisher": "mefengl",
"name": "vscode-i-dont-care-about-commit-message",
"displayName": "I Don't Care About Commit Message",
"version": "0.8.1",
"private": true,
"description": "Yet another AI git commit plugin, but without the need for manual confirmation.",
"author": "mefengl",
"license": "MIT",
"repository": "https://github.com/mefengl/vscode-i-dont-care-about-commit-message",
"keywords": [
"ai",
"autocomplete",
"c",
"c#",
"c++",
"co-pilot",
"codex",
"commit",
"documentation",
"git",
"go",
"golang",
"gpt-3.5-turbo",
"gpt-3.5",
"gpt-3",
"gpt-4",
"java",
"javascript",
"kotlin",
"openai",
"php",
"pilot",
"python",
"ruby",
"typescript"
],
"categories": [
"Machine Learning",
"SCM Providers",
"Education",
"Snippets"
],
"main": "./dist/extension.js",
"icon": "res/logo.png",
"engines": {
"vscode": "^1.79.0"
},
"activationEvents": [],
"contributes": {
"commands": [
{
"command": "gitCommitAI",
"title": "AI Git Commit"
},
{
"command": "gitPushAI",
"title": "AI Git Push"
},
{
"command": "gitCommitStagedAI",
"title": "AI Git Commit Staged"
},
{
"command": "gitPushStagedAI",
"title": "AI Git Push Staged"
},
{
"command": "gitCommitX",
"title": "I Really Don't Care Commit"
}
],
"configuration": {
"properties": {
"iDontCareAboutCommitMessage.openaiBaseURL": {
"type": "string",
"default": "https://api.openai.com/v1",
"description": "OpenAI API Base URL"
},
"iDontCareAboutCommitMessage.openaiApiKey": {
"type": "string",
"default": "",
"description": "OpenAI API Key"
},
"iDontCareAboutCommitMessage.model": {
"type": "string",
"default": "gpt-3.5-turbo",
"description": "OpenAI Model to be used"
},
"iDontCareAboutCommitMessage.useConventionalCommit": {
"type": "boolean",
"default": false,
"description": "Whether to use conventional commit"
}
}
}
},
"scripts": {
"bump": "bumpp -y -q",
"vscode:prepublish": "npm run compile",
"compile": "tsup ./src/extension.ts --external vscode --minify",
"watch": "tsup ./src/extension.ts --external vscode --watch --sourcemap",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^1.1.0",
"@types/glob": "^8.1.0",
"@types/vscode": "^1.79.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vscode/test-electron": "^2.3.2",
"bumpp": "^9.8.1",
"eslint": "^8.53.0",
"glob": "^10.0.0",
"openai": "^4.0.0",
"simple-git": "^3.19.1",
"ts-loader": "^9.4.3",
"tsup": "^7.1.0",
"typescript": "^5.1.3",
"vitest": "^0.34.0"
}
}