This repository has been archived by the owner on Jul 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
115 lines (115 loc) · 2.73 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
{
"name": "cdt-vscode",
"version": "0.0.7",
"description": "CDT VS Code Extension for C/C++ Developers",
"author": "Eclipse CDT",
"publisher": "eclipse-cdt",
"icon": "images/cdt_logo.png",
"license": "EPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-cdt/cdt-vscode.git"
},
"engines": {
"vscode": "^1.30.0"
},
"main": "dist/extension.js",
"activationEvents": [
"onLanguage:cpp",
"onLanguage:c",
"onLanguage:objective-c",
"onLanguage:objective-cpp"
],
"contributes": {
"configuration": {
"type": "object",
"title": "clangd configuration",
"properties": {
"cdt.clangd.binaries.enable": {
"type": "boolean",
"default": true,
"description": "Download and use CDT's version of clangd"
},
"cdt.clangd.binaries.url": {
"type": "string",
"default": "https://github.com/dschaefer/llvm-project/releases/latest/download/",
"description": "Release URL for CDT's version of clangd"
}
}
},
"commands": [
{
"command": "cdt.typeHierarchy",
"title": "Open Type Hierarchy"
}
],
"menus": {
"editor/context": [
{
"when": "resourceLangId == cpp",
"command": "cdt.typeHierarchy"
}
]
},
"views": {
"explorer": [
{
"id": "cdt.typeHierarchyView",
"name": "Type Hierarchy"
}
]
},
"problemMatchers": [
{
"name": "gcc",
"owner": "cpp",
"fileLocation": [
"relative",
"${command:cdt.matcher.cwd}"
],
"source": "build",
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error|fatal error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
]
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "node ./node_modules/vscode/bin/install",
"vscode:prepublish": "npm run build",
"vsce:package": "vsce package"
},
"dependencies": {
"mkdirp": "^0.5.1",
"request": "^2.88.0",
"tar": "^4.4.8",
"vscode-languageclient": "^5.3.0-next.1"
},
"devDependencies": {
"@types/mkdirp": "^0.5.2",
"@types/node": "^11.9.5",
"@types/request": "^2.48.1",
"@types/tar": "^4.0.0",
"typescript": "^3.3.3333",
"vsce": "^1.57.1",
"vscode": "^1.1.30"
},
"extensionDependencies": [
"llvm-vs-code-extensions.vscode-clangd",
"eclipse-cdt.cdt-gdb-vscode"
],
"files": [
"NOTICE",
"LICENSE",
"README.md",
"CONTRIBUTING.md"
]
}