-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
36 lines (36 loc) · 857 Bytes
/
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
{
"name": "min-theme",
"displayName": "Min Theme",
"description": "A minimal theme that comes in dark and light.",
"version": "1.5.0",
"publisher": "miguelsolorio",
"repository": {
"type": "git",
"url": "https://github.com/misolori/min-theme.git"
},
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Themes"
],
"icon": "icon.png",
"contributes": {
"themes": [
{
"label": "Min Dark",
"uiTheme": "vs-dark",
"path": "./themes/min-dark.json"
},
{
"label": "Min Light",
"uiTheme": "vs",
"path": "./themes/min-light.json"
}
]
},
"galleryBanner": {
"color": "#000000",
"theme": "dark"
}
}