-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
149 lines (149 loc) · 4.13 KB
/
package.json
File metadata and controls
149 lines (149 loc) · 4.13 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"publisher": "mefengl",
"name": "vscode-i-dont-care-about-commit-message",
"displayName": "I Don't Care About Commit Message",
"version": "0.11.6",
"private": true,
"description": "Yet another AI git commit plugin, but without the need for manual confirmation.",
"author": "mefengl",
"license": "MIT",
"funding": "https://github.com/sponsors/mefengl",
"homepage": "https://github.com/mefengl/vscode-i-dont-care-about-commit-message#readme",
"repository": {
"type": "git",
"url": "https://github.com/mefengl/vscode-i-dont-care-about-commit-message"
},
"bugs": {
"url": "https://github.com/mefengl/vscode-i-dont-care-about-commit-message/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/mefengl"
},
"keywords": [
"git",
"commit",
"ai",
"autocomplete",
"openai",
"copilot"
],
"categories": [
"SCM Providers",
"Machine Learning",
"Education",
"Snippets"
],
"main": "./dist/extension.js",
"icon": "res/icon.png",
"engines": {
"vscode": "^1.92.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"
},
{
"command": "gitCommitMinimal",
"title": "AI Git Commit (Minimal)"
},
{
"command": "gitPushMinimal",
"title": "AI Git Push (Minimal)"
},
{
"command": "gitCommitStagedMinimal",
"title": "AI Git Commit Staged (Minimal)"
},
{
"command": "gitPushStagedMinimal",
"title": "AI Git Push Staged (Minimal)"
},
{
"command": "selectCopilotModel",
"title": "AI Git Commit: Select Copilot Model"
}
],
"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"
},
"iDontCareAboutCommitMessage.useCopilot": {
"type": "boolean",
"default": false,
"description": "Use GitHub Copilot instead of OpenAI API (requires Copilot subscription)"
},
"iDontCareAboutCommitMessage.selectedCopilotModel": {
"type": "string",
"default": "",
"description": "ID of the selected Copilot model"
}
}
}
},
"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",
"publish": "vsce publish --no-dependencies",
"release": "bumpp -y && nr publish"
},
"devDependencies": {
"@antfu/eslint-config": "^4.16.2",
"@types/glob": "^8.1.0",
"@types/vscode": "^1.92.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vscode/test-electron": "^2.3.2",
"@vscode/vsce": "^3.2.2",
"bumpp": "^9.11.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"
}
}