-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.25 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.25 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
{
"name": "lenix",
"displayName": "Commenix",
"publisher": "Lenix",
"description": "Fast light weight AI commit message composer/generator",
"version": "0.0.11",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "git+https://github.com/lenixdev/commenix.git"
},
"engines": {
"vscode": "^1.110.0"
},
"categories": [
"AI",
"SCM Providers"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"menus": {
"scm/title": [
{
"command": "lenix.composeCommit",
"group": "navigation",
"when": "scmProvider == git"
}
]
},
"commands": [
{
"command": "lenix.composeCommit",
"title": "Lenix: Compose Commit Message",
"icon": "$(edit-sparkle)"
},
{
"command": "lenix.settings",
"title": "Lenix: Open Settings"
}
],
"configuration": {
"properties": {
"lenix.apiKey": {
"type": "string",
"description": "API Key, control access: https://console.groq.com/keys"
},
"lenix.aiModel": {
"type": "string",
"default": "openai/gpt-oss-120b",
"enum": [
"openai/gpt-oss-120b",
"llama-3.1-8b-instant",
"qwen/qwen3-32b",
"moonshotai/kimi-k2-instruct-0905",
"llama-3.3-70b-versatile",
"groq/compound",
"allam-2-7b",
"meta-llama/llama-4-scout-17b-16e-instruct",
"meta-llama/llama-prompt-guard-2-22m",
"meta-llama/llama-prompt-guard-2-86m",
"moonshotai/kimi-k2-instruct",
"canopylabs/orpheus-v1-english",
"groq/compound-mini",
"openai/gpt-oss-20b",
"openai/gpt-oss-safeguard-20b",
"canopylabs/orpheus-arabic-saudi",
"whisper-large-v3",
"whisper-large-v3-turbo"
],
"enumDescriptions": [
"⚡ Best for speed",
"🏆 Best overall / most intelligent",
"🧠 Best for reasoning / hard problems",
"🌐 Best for long documents",
"🔧 Best for tool use / function calling",
"🔍 Best with built-in web search",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
""
],
"description": "AI model that will be used to compose the commit message, Docs: https://console.groq.com/docs"
}
}
}
},
"scripts": {
"vscode:prepublish": "pnpm run package",
"compile": "pnpm run check-types && pnpm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "pnpm run check-types && pnpm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test",
"bypasspublish": "vsce package --out lenix.vsix"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.110.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.27.3",
"eslint": "^9.39.3",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"groq-sdk": "^1.1.1"
}
}