Skip to content

Commit 7bd6328

Browse files
committed
[lldb-vscode] Update package.json
- Update license, display name, repository and keywords - Add homepage, issue page - Fix formatting and typos Differential revision: https://reviews.llvm.org/D158801
1 parent 5624e86 commit 7bd6328

File tree

1 file changed

+79
-75
lines changed

1 file changed

+79
-75
lines changed

lldb/tools/lldb-vscode/package.json

Lines changed: 79 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
11
{
22
"name": "lldb-vscode",
3-
"displayName": "LLDB native Debug stub",
3+
"displayName": "LLDB VSCode",
44
"version": "0.1.0",
55
"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-
"email": "[email protected]"
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"
1115
},
12-
"license": "LLVM",
1316
"keywords": [
14-
"multi-root ready"
17+
"C",
18+
"C++",
19+
"LLVM",
20+
"LLDB"
1521
],
1622
"engines": {
17-
"vscode": "^1.18.0",
18-
"node": "^7.9.0"
23+
"vscode": "^1.18.0"
1924
},
2025
"categories": [
2126
"Debuggers"
2227
],
23-
"private": true,
2428
"devDependencies": {
2529
"@types/node": "7.0.43",
2630
"@types/mocha": "2.2.45",
@@ -34,69 +38,69 @@
3438
"contributes": {
3539
"languages": [
3640
{
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+
]
4448
}
4549
],
4650
"grammars": [
4751
{
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+
],
100104
"debuggers": [
101105
{
102106
"type": "lldb-vscode",
@@ -149,7 +153,7 @@
149153
},
150154
"env": {
151155
"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.",
153157
"default": []
154158
},
155159
"stopOnEntry": {
@@ -183,12 +187,12 @@
183187
},
184188
"sourceMap": {
185189
"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.",
187191
"default": []
188192
},
189193
"debuggerRoot": {
190194
"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."
192196
},
193197
"targetTriple": {
194198
"type": "string",
@@ -263,12 +267,12 @@
263267
},
264268
"sourceMap": {
265269
"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.",
267271
"default": []
268272
},
269273
"debuggerRoot": {
270274
"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."
272276
},
273277
"targetTriple": {
274278
"type": "string",

0 commit comments

Comments
 (0)