-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "horizon-extended",
"displayName": "Horizon Extended Theme",
"description": "A dark theme based on the Horizon theme. This provides some much need additions included semantic highlighting.",
"version": "0.2.0",
"publisher": "lancewilhelm",
"engines": {
"vscode": "^1.55.0"
},
"icon": "logo.png",
"author": {
"name": "Lance Wilhelm",
"email": "[email protected]",
"url": "https://lancewilhelm.com"
},
"repository": {
"url": "https://github.com/lancewilhelm/horizon-extended",
"type": "git"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"dark",
"horizon",
"extended",
"warm"
],
"contributes": {
"themes": [
{
"label": "Horizon Extended",
"uiTheme": "vs-dark",
"path": "./themes/original.json"
},
{
"label": "Horizon Extended Light",
"uiTheme": "vs",
"path": "./themes/light.json"
},
{
"label": "Horizon Extended - No Italics",
"uiTheme": "vs-dark",
"path": "./themes/original_no_italics.json"
}
]
}
}