|
2 | 2 | "name": "lldb-vscode", |
3 | 3 | "displayName": "LLDB native Debug stub", |
4 | 4 | "version": "0.1.0", |
5 | | - "publisher": "llvm.org", |
| 5 | + "publisher": "llvm", |
| 6 | + "repository": "llvm.org", |
6 | 7 | "description": "Debug adapter for LLDB which uses a C++ tool to interface directly with LLDB.", |
7 | 8 | "author": { |
8 | 9 | "name": "Greg Clayton", |
|
16 | 17 | "vscode": "^1.18.0", |
17 | 18 | "node": "^7.9.0" |
18 | 19 | }, |
19 | | - "icon": "images/lldb.png", |
20 | 20 | "categories": [ |
21 | 21 | "Debuggers" |
22 | 22 | ], |
|
29 | 29 | "vscode": "1.1.10", |
30 | 30 | "vscode-debugadapter-testsupport": "1.25.0", |
31 | 31 | "tslint": "5.8.0", |
32 | | - "vsce": "1.35.0" |
| 32 | + "vsce": "^1.36.3" |
33 | 33 | }, |
34 | 34 | "contributes": { |
35 | 35 | "debuggers": [ |
|
70 | 70 | "description": "Path to the program to debug." |
71 | 71 | }, |
72 | 72 | "args": { |
73 | | - "type": [ "array", "string" ], |
| 73 | + "type": [ |
| 74 | + "array", |
| 75 | + "string" |
| 76 | + ], |
74 | 77 | "description": "Program arguments.", |
75 | 78 | "default": [] |
76 | 79 | }, |
|
131 | 134 | "description": "Name of the execution platform to override value derived from the program file." |
132 | 135 | }, |
133 | 136 | "initCommands": { |
134 | | - "type": "array", |
135 | | - "description": "Initialization commands executed upon debugger startup.", |
136 | | - "default": [] |
| 137 | + "type": "array", |
| 138 | + "description": "Initialization commands executed upon debugger startup.", |
| 139 | + "default": [] |
137 | 140 | }, |
138 | 141 | "preRunCommands": { |
139 | | - "type": "array", |
140 | | - "description": "Commands executed just before the program is launched.", |
141 | | - "default": [] |
| 142 | + "type": "array", |
| 143 | + "description": "Commands executed just before the program is launched.", |
| 144 | + "default": [] |
142 | 145 | }, |
143 | 146 | "launchCommands": { |
144 | | - "type": "array", |
145 | | - "description": "Custom commands that are executed instead of launching a process. A target will be created with the launch arguments prior to executing these commands. The commands may optionally create a new target and must perform a launch. A valid process must exist after these commands complete or the \"launch\" will fail.", |
146 | | - "default": [] |
| 147 | + "type": "array", |
| 148 | + "description": "Custom commands that are executed instead of launching a process. A target will be created with the launch arguments prior to executing these commands. The commands may optionally create a new target and must perform a launch. A valid process must exist after these commands complete or the \"launch\" will fail.", |
| 149 | + "default": [] |
147 | 150 | }, |
148 | 151 | "stopCommands": { |
149 | | - "type": "array", |
150 | | - "description": "Commands executed each time the program stops.", |
151 | | - "default": [] |
| 152 | + "type": "array", |
| 153 | + "description": "Commands executed each time the program stops.", |
| 154 | + "default": [] |
152 | 155 | }, |
153 | 156 | "exitCommands": { |
154 | | - "type": "array", |
155 | | - "description": "Commands executed at the end of debugging session.", |
156 | | - "default": [] |
| 157 | + "type": "array", |
| 158 | + "description": "Commands executed at the end of debugging session.", |
| 159 | + "default": [] |
157 | 160 | } |
158 | 161 | } |
159 | 162 | }, |
160 | 163 | "attach": { |
161 | 164 | "properties": { |
162 | 165 | "program": { |
163 | 166 | "type": "string", |
164 | | - "description": "Path to the program to attach to." |
| 167 | + "description": "Path to the program to attach to." |
165 | 168 | }, |
166 | 169 | "pid": { |
167 | 170 | "type": [ |
168 | | - "number", |
169 | | - "string" |
| 171 | + "number", |
| 172 | + "string" |
170 | 173 | ], |
171 | 174 | "description": "System process ID to attach to." |
172 | 175 | }, |
|
0 commit comments