-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (38 loc) · 843 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
37
38
{
"name": "color-themes",
"displayName": "Erik's color themes",
"description": "Color themes adjusted to my preferences",
"publisher": "Erik-Lieben",
"license": "MIT",
"version": "0.0.4",
"engines": {
"vscode": "^1.92.0"
},
"author": {
"name": "Erik Lieben"
},
"icon": "./assets/icon.jpg",
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Erik's Dark Theme",
"uiTheme": "vs-dark",
"path": "./themes/erik-dark-color-theme.json",
"id": "erik-vs-dark"
},
{
"label": "Erik's Light Theme",
"uiTheme": "vs",
"path": "./themes/erik-light-color-theme.json",
"id": "erik-vs"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/eriklieben/vscode-color-themes.git"
}
}