-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.77 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.77 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
{
"name": "cpptools-themes",
"displayName": "C/C++ Themes",
"description": "UI Themes for C/C++ extension.",
"version": "2.1.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": "c_cpp_support@microsoft.com"
},
"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_new.json"
},
{
"id": "Visual Studio 2017 Dark - C++",
"label": "2017 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_new.json"
},
{
"id": "Visual Studio 2017 Light - C++",
"label": "2017 Light (Visual Studio - C/C++)",
"uiTheme": "vs",
"path": "./themes/cpptools_light_vs.json"
}
]
},
"devDependencies": {
"@vscode/vsce": "^3.7.1"
},
"overrides": {
"@azure/msal-browser": "^4.29.1"
}
}