-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.14 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": "opencode-gui",
"displayName": "OpenCode UI - AI Coding Agent",
"publisher": "TanShiyong",
"description": "VS Code UI for OpenCode CLI with subagents, code diff, change lists, and undo/restore.",
"icon": "media/marketplace-icon.png",
"version": "3.0.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Shiyong-Tan/OpenCodeGUI.git"
},
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"AI",
"Other"
],
"keywords": [
"opencode",
"open code",
"ai coding",
"code agent",
"ai assistant",
"coding assistant",
"developer tools",
"cli tools",
"ai dev tools",
"ai development",
"llm",
"openai"
],
"activationEvents": [
"onCommand:opencode.checkVersion",
"onView:opencode.sidebar",
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "opencode-activitybar",
"title": "OpenCode",
"icon": "media/icon.svg"
}
]
},
"views": {
"opencode-activitybar": [
{
"type": "webview",
"id": "opencode.sidebar",
"name": "Chat"
}
]
},
"commands": [
{
"command": "opencode.checkVersion",
"title": "OpenCode: Check Version"
},
{
"command": "opencode.clearAttachmentsCache",
"title": "OpenCode: Clear Attachments Cache"
},
{
"command": "opencode.sendSelectionToChat",
"title": "OpenCode: Send Selection to UI"
},
{
"command": "opencode.sendOutputSelectionToChat",
"title": "OpenCode: Send Output Selection to UI"
},
{
"command": "opencode.debugTuiControlSchema",
"title": "OpenCode: Debug TUI Control Schema"
},
{
"command": "opencode.debugWebviewLivenessMissedAck",
"title": "OpenCode: Debug Webview Liveness Missed Ack"
},
{
"command": "opencode.debugWebviewLivenessAckDropOn",
"title": "OpenCode: Debug Webview Liveness Ack Drop On"
},
{
"command": "opencode.debugWebviewLivenessAckDropOff",
"title": "OpenCode: Debug Webview Liveness Ack Drop Off"
}
],
"menus": {
"editor/context": [
{
"command": "opencode.sendSelectionToChat",
"when": "editorTextFocus && editorHasSelection"
},
{
"command": "opencode.sendOutputSelectionToChat",
"when": "resourceScheme == 'output' && editorHasSelection"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/diff-match-patch": "^1.0.34",
"@types/dompurify": "^3.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^18.0.0",
"@types/vscode": "^1.80.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.6",
"typescript": "^5.0.0"
},
"dependencies": {
"diff-match-patch": "^1.0.5",
"dompurify": "^3.0.8",
"markdown-it": "^14.1.0"
}
}