-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
167 lines (167 loc) · 5.47 KB
/
package.json
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
{
"name": "connext-vc-copilot",
"displayName": "Connext for Github Copilot",
"description": "Bringing the power of Connext Chatbot to GitHub Copilot Chat",
"version": "0.0.13",
"publisher": "Real-Time Innovations",
"icon": "images/bot_avatar.png",
"repository": {
"type": "git",
"url": "https://github.com/rticommunity/rticonnext-vc-copilot"
},
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"AI"
],
"activationEvents": [],
"extensionDependencies": [
"github.copilot-chat"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "connext-vc-copilot.login",
"title": "Connext: Login"
},
{
"command": "connext-vc-copilot.logout",
"title": "Connext: Logout"
},
{
"command": "connext-vc-copilot.explain",
"title": "Connext: Explain this",
"shortTitle": "Explain this"
},
{
"command": "connext-vc-copilot.fix",
"title": "Connext: Fix this",
"shortTitle": "Fix this"
},
{
"command": "connext-vc-copilot.validate-code",
"title": "Connext: Validate code"
},
{
"command": "connext-vc-copilot.run-admin-console",
"title": "Connext: Run RTI Admin Console"
},
{
"command": "connext-vc-copilot.run-system-designer",
"title": "Connext: Run RTI System Designer"
},
{
"command": "connext-vc-copilot.run-monitor-ui",
"title": "Connext: Run RTI Monitor"
},
{
"command": "connext-vc-copilot.run-shapes-demo",
"title": "Connext: Run RTI Shapes Demo"
},
{
"command": "connext-vc-copilot.select-installation",
"title": "Connext: Select Installation"
}
],
"chatParticipants": [
{
"id": "connext-vc-copilot.chat",
"name": "connext",
"description": "Ask questions to the Connext expert",
"isSticky": true,
"commands": [
{
"name": "startAdminConsole",
"description": "Start RTI Admin Console"
},
{
"name": "startSystemDesigner",
"description": "Start RTI System Designer"
},
{
"name": "startMonitorUI",
"description": "Start RTI Monitor"
},
{
"name": "startShapesDemo",
"description": "Start RTI Shapes Demo"
},
{
"name": "connextInfo",
"description": "Show Connext installation(s) info"
},
{
"name": "openFiles",
"description": "Consider all open files for context"
}
]
}
],
"submenus": [
{
"id": "connext-vc-copilot.submenu",
"label": "Connext"
}
],
"menus": {
"editor/context": [
{
"submenu": "connext-vc-copilot.submenu",
"group": "Connext"
}
],
"connext-vc-copilot.submenu": [
{
"command": "connext-vc-copilot.explain"
},
{
"command": "connext-vc-copilot.fix"
}
]
},
"configuration": {
"title": "Connext for Github Copilot",
"properties": {
"connext.intelligencePlatformUrl": {
"type": "string",
"default": "wss://sandbox-chatbot.rti.com",
"description": "The URL of the Connext Intelligence Platform server"
},
"connext.useAllOpenFilesForContext": {
"type": "boolean",
"default": false,
"description": "Indicates whether to use all open files for context or just the active file"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"dependencies": {
"node-fetch": "^2.7.0",
"socket.io-client": "^4.7.5",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/node-fetch": "^2.6.11",
"@types/socket.io-client": "^3.0.0",
"@types/uuid": "^10.0.0",
"@types/vscode": "^1.93.0",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.9.1",
"typescript": "^5.5.4"
}
}