forked from microsoft/vscode-cpptools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "cpptools-themes",
"displayName": "C/C++ Themes",
"description": "UI Themes for C/C++ extension.",
"version": "1.0.0",
"publisher": "ms-vscode",
"preview": false,
"icon": "assets/LanguageCCPP_color_128x.png",
"readme": "README.md",
"author": {
"name": "Microsoft Corporation"
},
"license": "SEE LICENSE IN LICENSE.txt",
"engines": {
"vscode": "^1.30.0"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-cpptools/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-cpptools.git"
},
"homepage": "https://github.com/Microsoft/vscode-cpptools",
"qna": "https://github.com/Microsoft/vscode-cpptools/issues",
"keywords": [
"C",
"C++",
"Microsoft",
"Theme",
"Themes"
],
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"id": "Visual Studio Dark - C++",
"label": "Dark (Visual Studio - C/C++)",
"uiTheme": "vs-dark",
"path": "./themes/cpptools_dark_vs.json"
},
{
"id": "Visual Studio Light - C++",
"label": "Light (Visual Studio - C/C++)",
"uiTheme": "vs",
"path": "./themes/cpptools_light_vs.json"
}
]
}
}