forked from superagent-ai/grok-cli
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.72 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.72 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
{
"name": "super-agent-vscode",
"displayName": "Super Agent AI",
"version": "0.0.4",
"description": "AI-powered coding assistant with file context from Super Agent CLI",
"categories": [
"Machine Learning",
"Other",
"Programming Languages"
],
"homepage": "https://involvex.github.io/super-agent-cli/",
"repository": {
"type": "git",
"url": "https://github.com/involvex/super-agent-cli.git"
},
"license": "MIT",
"publisher": "involvex",
"main": "./dist/extension.js",
"scripts": {
"build": "bun run compile && bun run copy-assets",
"compile": "tsc -p ./",
"copy-assets": "node build.js",
"lint": "eslint src --ext ts",
"package": "npx vsce package --no-dependencies -o dist/",
"typecheck": "tsc --noEmit",
"vscode:prepublish": "bun run compile && bun run copy-assets",
"watch": "tsc -w -p ./"
},
"contributes": {
"commands": [
{
"command": "super-agent.openChat",
"title": "Open Super Agent Chat",
"icon": "icon.svg"
},
{
"command": "super-agent.reconnect",
"title": "Reconnect to CLI",
"icon": "icon.svg"
},
{
"command": "super-agent.startServer",
"title": "Start CLI Server",
"icon": "icon.svg"
},
{
"command": "super-agent.mentionFile",
"title": "Mention File in Chat"
},
{
"command": "super-agent.askAI",
"title": "Ask Super Agent AI"
}
],
"views": {
"super-agent-sidebar": [
{
"type": "webview",
"id": "super-agent.chat",
"name": "Chat",
"icon": "icon.svg"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "super-agent-sidebar",
"title": "Super Agent",
"icon": "icon.svg"
}
]
}
},
"activationEvents": [
"onStartupFinished"
],
"dependencies": {
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@types/vscode": "^1.109.0",
"@types/ws": "^8.18.1",
"@vscode/vsce": "^3.7.1",
"typescript": "^5.9.3"
},
"engines": {
"vscode": "^1.109.0"
},
"icon": "icon.png",
"configuration": {
"title": "Super Agent",
"properties": {
"superAgent.cliPort": {
"type": "number",
"default": 3000,
"description": "Port for Super Agent CLI WebSocket server"
},
"superAgent.cliHost": {
"type": "string",
"default": "localhost",
"description": "Host for Super Agent CLI WebSocket server"
},
"superAgent.autoConnect": {
"type": "boolean",
"default": true,
"description": "Automatically connect to CLI on startup"
}
}
}
}