|
1 | 1 | {
|
2 | 2 | "name": "lldb-vscode",
|
3 |
| - "displayName": "LLDB native Debug stub", |
| 3 | + "displayName": "LLDB VSCode", |
4 | 4 | "version": "0.1.0",
|
5 | 5 | "publisher": "llvm",
|
6 |
| - "repository": "llvm.org", |
7 |
| - "description": "Debug adapter for LLDB which uses a C++ tool to interface directly with LLDB.", |
8 |
| - "author": { |
9 |
| - "name": "Greg Clayton", |
10 |
| - |
| 6 | + "homepage": "https://lldb.llvm.org", |
| 7 | + "description": "LLDB debugging from VSCode", |
| 8 | + "license": "Apache 2.0 License with LLVM exceptions", |
| 9 | + "repository": { |
| 10 | + "type": "git", |
| 11 | + "url": "https://github.com/llvm/llvm-project.git" |
| 12 | + }, |
| 13 | + "bugs": { |
| 14 | + "url": "https://github.com/llvm/llvm-project/issues" |
11 | 15 | },
|
12 |
| - "license": "LLVM", |
13 | 16 | "keywords": [
|
14 |
| - "multi-root ready" |
| 17 | + "C", |
| 18 | + "C++", |
| 19 | + "LLVM", |
| 20 | + "LLDB" |
15 | 21 | ],
|
16 | 22 | "engines": {
|
17 |
| - "vscode": "^1.18.0", |
18 |
| - "node": "^7.9.0" |
| 23 | + "vscode": "^1.18.0" |
19 | 24 | },
|
20 | 25 | "categories": [
|
21 | 26 | "Debuggers"
|
22 | 27 | ],
|
23 |
| - "private": true, |
24 | 28 | "devDependencies": {
|
25 | 29 | "@types/node": "7.0.43",
|
26 | 30 | "@types/mocha": "2.2.45",
|
|
34 | 38 | "contributes": {
|
35 | 39 | "languages": [
|
36 | 40 | {
|
37 |
| - "id": "lldb.disassembly", |
38 |
| - "aliases": [ |
39 |
| - "Disassembly" |
40 |
| - ], |
41 |
| - "extensions": [ |
42 |
| - ".disasm" |
43 |
| - ] |
| 41 | + "id": "lldb.disassembly", |
| 42 | + "aliases": [ |
| 43 | + "Disassembly" |
| 44 | + ], |
| 45 | + "extensions": [ |
| 46 | + ".disasm" |
| 47 | + ] |
44 | 48 | }
|
45 | 49 | ],
|
46 | 50 | "grammars": [
|
47 | 51 | {
|
48 |
| - "language": "lldb.disassembly", |
49 |
| - "scopeName": "source.disassembly", |
50 |
| - "path": "./syntaxes/disassembly.json" |
51 |
| - } |
52 |
| - ], |
53 |
| - "breakpoints": [ |
54 |
| - { |
55 |
| - "language": "ada" |
56 |
| - }, |
57 |
| - { |
58 |
| - "language": "arm" |
59 |
| - }, |
60 |
| - { |
61 |
| - "language": "asm" |
62 |
| - }, |
63 |
| - { |
64 |
| - "language": "c" |
65 |
| - }, |
66 |
| - { |
67 |
| - "language": "cpp" |
68 |
| - }, |
69 |
| - { |
70 |
| - "language": "crystal" |
71 |
| - }, |
72 |
| - { |
73 |
| - "language": "d" |
74 |
| - }, |
75 |
| - { |
76 |
| - "language": "fortan" |
77 |
| - }, |
78 |
| - { |
79 |
| - "language": "fortran-modern" |
80 |
| - }, |
81 |
| - { |
82 |
| - "language": "nim" |
83 |
| - }, |
84 |
| - { |
85 |
| - "language": "objective-c" |
86 |
| - }, |
87 |
| - { |
88 |
| - "language": "objectpascal" |
89 |
| - }, |
90 |
| - { |
91 |
| - "language": "pascal" |
92 |
| - }, |
93 |
| - { |
94 |
| - "language": "rust" |
95 |
| - }, |
96 |
| - { |
97 |
| - "language": "swift" |
98 |
| - } |
99 |
| - ], |
| 52 | + "language": "lldb.disassembly", |
| 53 | + "scopeName": "source.disassembly", |
| 54 | + "path": "./syntaxes/disassembly.json" |
| 55 | + } |
| 56 | + ], |
| 57 | + "breakpoints": [ |
| 58 | + { |
| 59 | + "language": "ada" |
| 60 | + }, |
| 61 | + { |
| 62 | + "language": "arm" |
| 63 | + }, |
| 64 | + { |
| 65 | + "language": "asm" |
| 66 | + }, |
| 67 | + { |
| 68 | + "language": "c" |
| 69 | + }, |
| 70 | + { |
| 71 | + "language": "cpp" |
| 72 | + }, |
| 73 | + { |
| 74 | + "language": "crystal" |
| 75 | + }, |
| 76 | + { |
| 77 | + "language": "d" |
| 78 | + }, |
| 79 | + { |
| 80 | + "language": "fortan" |
| 81 | + }, |
| 82 | + { |
| 83 | + "language": "fortran-modern" |
| 84 | + }, |
| 85 | + { |
| 86 | + "language": "nim" |
| 87 | + }, |
| 88 | + { |
| 89 | + "language": "objective-c" |
| 90 | + }, |
| 91 | + { |
| 92 | + "language": "objectpascal" |
| 93 | + }, |
| 94 | + { |
| 95 | + "language": "pascal" |
| 96 | + }, |
| 97 | + { |
| 98 | + "language": "rust" |
| 99 | + }, |
| 100 | + { |
| 101 | + "language": "swift" |
| 102 | + } |
| 103 | + ], |
100 | 104 | "debuggers": [
|
101 | 105 | {
|
102 | 106 | "type": "lldb-vscode",
|
|
149 | 153 | },
|
150 | 154 | "env": {
|
151 | 155 | "type": "array",
|
152 |
| - "description": "Additional environment variables to set when launching the program. This is an array of strings that contains the variable name followed by an optional '=' character and the environment variable's value. Example: [\"FOO=BAR\", \"BAZ\"]", |
| 156 | + "description": "Additional environment variables to set when launching the program. This is an array of strings that contains the variable name followed by an optional '=' character and the environment variable's value.", |
153 | 157 | "default": []
|
154 | 158 | },
|
155 | 159 | "stopOnEntry": {
|
|
183 | 187 | },
|
184 | 188 | "sourceMap": {
|
185 | 189 | "type": "array",
|
186 |
| - "description": "Specify an array of path remappings; each element must itself be a two element array containing a source and destination pathname. Overrides sourcePath.", |
| 190 | + "description": "Specify an array of path remappings; each element must itself be a two element array containing a source and destination path name. Overrides sourcePath.", |
187 | 191 | "default": []
|
188 | 192 | },
|
189 | 193 | "debuggerRoot": {
|
190 | 194 | "type": "string",
|
191 |
| - "description": "Specify a working directory to set the debug adaptor to so relative object files can be located." |
| 195 | + "description": "Specify a working directory to set the debug adapter to so relative object files can be located." |
192 | 196 | },
|
193 | 197 | "targetTriple": {
|
194 | 198 | "type": "string",
|
|
263 | 267 | },
|
264 | 268 | "sourceMap": {
|
265 | 269 | "type": "array",
|
266 |
| - "description": "Specify an array of path remappings; each element must itself be a two element array containing a source and destination pathname. Overrides sourcePath.", |
| 270 | + "description": "Specify an array of path remappings; each element must itself be a two element array containing a source and destination path name. Overrides sourcePath.", |
267 | 271 | "default": []
|
268 | 272 | },
|
269 | 273 | "debuggerRoot": {
|
270 | 274 | "type": "string",
|
271 |
| - "description": "Specify a working directory to set the debug adaptor to so relative object files can be located." |
| 275 | + "description": "Specify a working directory to set the debug adapter to so relative object files can be located." |
272 | 276 | },
|
273 | 277 | "targetTriple": {
|
274 | 278 | "type": "string",
|
|
0 commit comments