-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1.05 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": "operatormonodarktheme",
"displayName": "Operator Mono Themes",
"description": "Dark and Light themes for Operator Mono font",
"icon": "icon.png",
"version": "2.0.2",
"publisher": "Valiantsin",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Operator Mono Dark Theme",
"uiTheme": "vs-dark",
"path": "./themes/dark_plus.json"
},
{
"label": "Operator Mono Dark Modern Theme",
"uiTheme": "vs-dark",
"path": "./themes/dark_modern.json"
},
{
"label": "Operator Mono Light Theme",
"uiTheme": "vs",
"path": "./themes/light_plus.json"
},
{
"label": "Operator Mono Light Modern Theme",
"uiTheme": "vs",
"path": "./themes/light_modern.json"
}
]
},
"homepage": "https://github.com/vharadkou/OperatorMonoThemes/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/vharadkou/OperatorMonoThemes"
}
}