forked from gitricko/hermes-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 2.85 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
{
"name": "hermes-ai-agent",
"displayName": "Hermes AI Agent",
"description": "VS Code sidebar for the Hermes AI agent. Streams chat, runs tools, manages sessions. Multi-model (Claude, Codex). Communicates over ACP.",
"version": "3.0.0",
"publisher": "joaompfp",
"author": "joao",
"license": "MIT",
"keywords": [
"ai agent",
"coding assistant",
"autonomous agent",
"claude",
"codex",
"copilot alternative",
"pair programmer",
"llm",
"tool use",
"chat",
"hermes",
"acp",
"agent client protocol",
"sidebar chat",
"streaming",
"remote ssh"
],
"homepage": "https://github.com/joaompfp/hermes-vscode",
"bugs": {
"url": "https://github.com/joaompfp/hermes-vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/joaompfp/hermes-vscode"
},
"icon": "resources/hermes-logo-128.png",
"galleryBanner": {
"color": "#1f1f1f",
"theme": "dark"
},
"engines": {
"vscode": "^1.85.0"
},
"extensionKind": [
"workspace"
],
"categories": [
"AI",
"Chat",
"Machine Learning",
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"qna": "https://github.com/joaompfp/hermes-vscode/issues",
"contributes": {
"commands": [
{
"command": "hermes.openChat",
"title": "Hermes: Open Chat"
},
{
"command": "hermes.newSession",
"title": "Hermes: New Session"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "hermes",
"title": "Hermes Agent",
"icon": "resources/hermes-icon.svg"
}
]
},
"views": {
"hermes": [
{
"type": "webview",
"id": "hermes.chatView",
"name": "Chat"
}
]
},
"configuration": {
"title": "Hermes",
"properties": {
"hermes.path": {
"type": "string",
"default": "hermes",
"scope": "machine-overridable",
"description": "Trusted absolute path to the Hermes binary."
},
"hermes.debugLogs": {
"type": "boolean",
"default": false,
"description": "Enable diagnostic ACP logs in the Hermes output channel."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"package": "vsce package --no-dependencies"
},
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/escape-html": "^1.0.4",
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^2.22.0",
"ts-loader": "^9.5.0",
"typescript": "^5.3.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"dompurify": "^3.4.5",
"escape-html": "^1.0.3",
"marked": "^17.0.5"
}
}