-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.06 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": "kulay",
"displayName": "Kulay",
"description": "Your simple code theme. Kulay Light for daytime use is now being added.",
"version": "1.0.1",
"publisher": "claide",
"repository": {
"type": "git",
"url": "https://github.com/claide/kulay"
},
"keywords": [
"Theme",
"Dark Theme",
"Light Theme",
"Cool Theme",
"Accessible Theme"
],
"scripts": {
"publish": "vsce publish"
},
"icon": "icon.png",
"galleryBanner": {
"color": "#7278da",
"theme": "dark"
},
"engines": {
"vscode": "^1.46.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Kulay Dark",
"uiTheme": "vs-dark",
"path": "./themes/Kulay Dark-color-theme.json"
},
{
"label": "Kulay Light",
"uiTheme": "vs",
"path": "./themes/Kulay Light-color-theme.json"
}
]
}
}