-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
174 lines (174 loc) · 5.03 KB
/
Copy pathpackage.json
File metadata and controls
174 lines (174 loc) · 5.03 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "continue-commit-notes",
"displayName": "Continue Commit Notes",
"description": "Generate AI-powered git commit messages using your locally configured Continue.dev models",
"version": "0.3.3",
"publisher": "jim-ki-do",
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other",
"Machine Learning"
],
"keywords": [
"git",
"commit",
"ai",
"continue",
"llm",
"local",
"conventional commits",
"ollama",
"llama.cpp",
"lmstudio",
"gpt4all",
"gemini",
"mistral",
"a3",
"vicuna",
"falcon",
"custom models"
],
"extensionKind": [
"ui"
],
"icon": "extension/icons/marketplace-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/bishopsmove/continue-based-commit-notes"
},
"bugs": {
"url": "https://github.com/bishopsmove/continue-based-commit-notes/issues"
},
"activationEvents": [
"onView:scm"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "continueCommit.generate",
"title": "Generate Commit Message (via Continue.dev config)",
"category": "Continue Commit",
"icon": {
"light": "icons/continue-commit-light.svg",
"dark": "icons/continue-commit-dark.svg"
}
},
{
"command": "continueCommit.generateWithModelPicker",
"title": "Generate Commit Message (via Continue.dev config) (Pick Model)",
"category": "Continue Commit",
"icon": {
"light": "icons/continue-commit-light.svg",
"dark": "icons/continue-commit-dark.svg"
}
}
],
"menus": {
"scm/title": [
{
"command": "continueCommit.generate",
"group": "navigation",
"when": "scmProvider == git"
}
],
"scm/resourceGroup/context": [
{
"command": "continueCommit.generate",
"group": "inline",
"when": "scmProvider == git && scmResourceGroup == workingTree"
},
{
"command": "continueCommit.generate",
"group": "inline",
"when": "scmProvider == git && scmResourceGroup == index"
},
{
"command": "continueCommit.generate",
"group": "1_continueCommit",
"when": "scmProvider == git"
}
]
},
"configuration": {
"title": "Continue Commit Notes",
"properties": {
"continueCommit.showModelPicker": {
"type": "boolean",
"default": false,
"markdownDescription": "Always show a model picker before generating. When `false`, uses `#continueCommit.preferredModel#` or the first model in your Continue config."
},
"continueCommit.preferredModel": {
"type": "string",
"default": "",
"markdownDescription": "The **title** / **name** of the preferred Continue model (must match a `title` or `name` field in `~/.continue/config.yaml` or `~/.continue/config.json`). Leave empty to auto-select the first available chat model."
},
"continueCommit.commitStyle": {
"type": "string",
"enum": [
"conventional",
"freeform"
],
"enumDescriptions": [
"Conventional Commits — feat:, fix:, chore:, etc.",
"Plain one-liner summary with optional body"
],
"default": "conventional",
"description": "Commit message format to request from the model."
},
"continueCommit.continuePort": {
"type": "number",
"default": 65432,
"description": "Port number for the Continue.dev local proxy server. Change only if you've configured a custom port."
},
"continueCommit.maxTokens": {
"type": "number",
"default": 256,
"minimum": 64,
"maximum": 2048,
"description": "Maximum tokens to generate for the commit message."
},
"continueCommit.useContinueProxy": {
"type": "boolean",
"default": true,
"description": "Try the Continue.dev local proxy first before falling back to the model provider's API directly."
}
}
}
},
"scripts": {
"vscode:prepublish": "node esbuild.js --production",
"compile": "node esbuild.js",
"watch": "node esbuild.js --watch",
"pretest": "tsc -p tsconfig.json",
"test": "node ./out/test/runTests.js",
"lint": "eslint src --ext ts",
"package": "vsce package",
"publish:ovsx": "npx ovsx publish ./*.vsix"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.5",
"@types/vscode": "^1.85.0",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^3.9.1",
"esbuild": "^0.25.0",
"mocha": "^10.2.0",
"ovsx": "^0.9.5",
"typescript": "^5.3.3"
},
"extensionDependencies": [
"vscode.git"
],
"overrides": {
"serialize-javascript": ">=7.0.5",
"uuid": ">=14.0.0"
},
"galleryBanner": {
"color": "#1e1e2e",
"theme": "dark"
}
}