-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "ccpp-theme",
"displayName": "C/C++ Theme",
"description": "The language C/C++ focused theme, powered by MS C/C++ and clangd semantic token engine.",
"version": "0.3.4",
"engines": {
"vscode": "^1.47.0"
},
"maintainers": [
"Xen Kuo <[email protected]>"
],
"publisher": "Xen",
"repository": {
"type": "git",
"url": "https://github.com/xenkuo/ccpp_theme.git"
},
"keywords": [
"c/c++",
"dracula-2.24.2",
"bluloco_light-3.7.3",
"dark",
"theme",
"color-theme "
],
"categories": [
"Themes"
],
"icon": "icon.png",
"contributes": {
"themes": [
{
"label": "C/C++ Theme",
"uiTheme": "vs-dark",
"path": "./themes/ccpp_theme.json"
},
{
"label": "C/C++ Theme Light",
"uiTheme": "vs",
"path": "./themes/ccpp_theme_light.json"
}
]
}
}