-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
46 lines (46 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
{
"name": "spacegray-vscode",
"displayName": "Spacegray VSCode",
"description": "Spacegray theme for visual studio code.",
"version": "1.2.4",
"publisher": "ionutvmi",
"icon": "screenshots/eighties.png",
"repository": {
"type": "git",
"url": "https://github.com/ionutvmi/spacegray-vscode"
},
"bugs": {
"url": "https://github.com/ionutvmi/spacegray-vscode/issues",
"email": "ionutvmi@gmail.com"
},
"engines": {
"vscode": "*"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Spacegray Ocean Dark",
"uiTheme": "vs-dark",
"path": "./themes/base16-ocean.dark.json"
},
{
"label": "Spacegray Eighties Dark",
"uiTheme": "vs-dark",
"path": "./themes/base16-eighties.dark.json"
},
{
"label": "Spacegray Mocha Dark",
"uiTheme": "vs-dark",
"path": "./themes/base16-mocha.dark.json"
},
{
"label": "Spacegray Ocean Light",
"uiTheme": "vs",
"path": "./themes/base16-ocean.light.json"
}
]
}
}