-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.82 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.82 KB
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
{
"name": "cpp-projects",
"displayName":"C++ Projects",
"description": "Extension for C++ Projects.",
"version": "0.1.3",
"publisher": "daniel-jeong",
"preview": true,
"icon": "icon.png",
"readme": "README.md",
"engines": {
"vscode": "^1.28.2"
},
"keywords": [
"C++"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:cpp_projects.newProject"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "cpp_projects.newProject",
"title": "C++ Projects: Create a New C++ Project"
}
],
"configuration":[
{
"type": "object",
"title": "C++ Projects",
"properties": {
"cpp_projects.msvc_path": {
"type": "string",
"default": "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools\\VC\\Auxiliary\\Build\\vcvarsall.bat",
"description": "Path to the MSVC build tools (vcvarsall.bat)."
},
"cpp_projects.make_path": {
"type": "string",
"default": "make",
"description": "Path to Make."
},
"cpp_projects.gcc32_path": {
"type": "string",
"default": "",
"description": "Path to the 32-bit GNU Compiler Collection directory (bin)."
},
"cpp_projects.gcc64_path": {
"type": "string",
"default": "",
"description": "Path to the 64-bit GNU Compiler Collection directory (bin)."
},
"cpp_projects.gdb32_path":
{
"type": "string",
"default": "/usr/bin/gdb",
"description": "Path to the 32-bit GNU Project Debugger."
},
"cpp_projects.gdb64_path": {
"type": "string",
"default": "/usr/bin/gdb",
"description": "Path to the 64-bit GNU Project Debugger."
}
}
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.21",
"eslint": "^4.11.0",
"@types/node": "^8.10.25"
},
"extensionDependencies": [
"ms-vscode.cpptools"
],
"__metadata": {
"publisherDisplayName": "Daniel Jeong"
}
}