-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
185 lines (185 loc) · 4.86 KB
/
package.json
File metadata and controls
185 lines (185 loc) · 4.86 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
175
176
177
178
179
180
181
182
183
184
185
{
"name": "vscode-acp",
"displayName": "VSCode ACP",
"description": "AI coding agents in VS Code via Agent Client Protocol (ACP). Chat with Claude, OpenCode, and other ACP-compatible agents directly in your editor.",
"version": "1.4.0",
"publisher": "omercnet",
"license": "MIT",
"icon": "assets/icon.png",
"preview": true,
"pricing": "Free",
"qna": "marketplace",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/omercnet/vscode-acp"
},
"bugs": {
"url": "https://github.com/omercnet/vscode-acp/issues"
},
"homepage": "https://github.com/omercnet/vscode-acp#readme",
"engines": {
"vscode": "^1.74.0",
"node": "^22"
},
"categories": [
"AI",
"Chat",
"Programming Languages",
"Other"
],
"keywords": [
"ai",
"claude",
"opencode",
"acp",
"agent",
"chat",
"copilot",
"coding assistant",
"llm"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"description": "The extension can run in untrusted workspaces but some features may be limited."
},
"virtualWorkspaces": true
},
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "vscode-acp.startChat",
"title": "Start Chat",
"category": "ACP",
"icon": "$(comment-discussion)"
},
{
"command": "vscode-acp.newChat",
"title": "New Chat",
"category": "ACP",
"icon": "$(add)"
},
{
"command": "vscode-acp.clearChat",
"title": "Clear Chat",
"category": "ACP",
"icon": "$(clear-all)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "vscode-acp",
"title": "VSCode ACP",
"icon": "assets/icon.svg"
}
]
},
"views": {
"vscode-acp": [
{
"type": "webview",
"id": "vscode-acp.chatView",
"name": "Chat",
"icon": "$(comment-discussion)",
"contextualTitle": "ACP Chat"
}
]
},
"menus": {
"view/title": [
{
"command": "vscode-acp.newChat",
"when": "view == vscode-acp.chatView",
"group": "navigation@1"
},
{
"command": "vscode-acp.clearChat",
"when": "view == vscode-acp.chatView",
"group": "navigation@2"
}
],
"commandPalette": [
{
"command": "vscode-acp.startChat",
"when": "true"
},
{
"command": "vscode-acp.newChat",
"when": "true"
},
{
"command": "vscode-acp.clearChat",
"when": "true"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"pretest": "npm run compile-tests && npm run compile",
"test": "vscode-test",
"precoverage": "npm run compile-tests && npm run compile",
"coverage": "vscode-test --coverage --coverage-output coverage --coverage-reporter lcov --coverage-reporter text",
"coverage:html": "vscode-test --coverage --coverage-reporter html",
"lint": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\" \"*.{json,md}\"",
"prepare": "husky",
"screenshot": "npx tsx scripts/screenshot.ts",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@playwright/test": "^1.57.0",
"@types/jsdom": "^27.0.0",
"@types/marked": "^5.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "18.x",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.0.0",
"esbuild": "^0.25.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jsdom": "^27.3.0",
"lint-staged": "^16.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.12.0",
"marked": "^17.0.1",
"vscode-jsonrpc": "^8.2.0"
},
"lint-staged": {
"*.{ts,js,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,html}": [
"prettier --write"
]
}
}