-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.1 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.1 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
{
"name": "llm-switch",
"displayName": "LLM-Switch",
"description": "Unified AI provider and agent model configuration manager for Claude, Codex, and opencode.",
"version": "1.0.9",
"publisher": "VonSdite",
"license": "MIT",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "git+https://github.com/VonSdite/LLM-Switch.git"
},
"type": "commonjs",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"extensionKind": [
"workspace"
],
"activationEvents": [
"onCommand:llm-switch.openManager",
"onCommand:llm-switch.openClaudeConfig",
"onCommand:llm-switch.openCodexConfig",
"onCommand:llm-switch.openOpencodeConfig",
"onCommand:llm-switch.quickSwitchClaudeModel",
"onCommand:llm-switch.quickSwitchCodexModel",
"onCommand:llm-switch.quickSwitchOpencodeModel"
],
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "npm run compile"
},
"contributes": {
"commands": [
{
"command": "llm-switch.openManager",
"title": "LLM-Switch: Open Manager"
},
{
"command": "llm-switch.openClaudeConfig",
"title": "LLM-Switch: Open Claude Config"
},
{
"command": "llm-switch.openCodexConfig",
"title": "LLM-Switch: Open Codex Config"
},
{
"command": "llm-switch.openOpencodeConfig",
"title": "LLM-Switch: Open opencode Config"
},
{
"command": "llm-switch.quickSwitchClaudeModel",
"title": "LLM-Switch: Quick Switch Claude Model"
},
{
"command": "llm-switch.quickSwitchCodexModel",
"title": "LLM-Switch: Quick Switch Codex Model"
},
{
"command": "llm-switch.quickSwitchOpencodeModel",
"title": "LLM-Switch: Quick Switch opencode Model"
}
]
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"jsonc-parser": "^3.3.1"
},
"devDependencies": {
"@types/node": "^25.6.2",
"@types/vscode": "1.80.0",
"typescript": "^6.0.3"
}
}