-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "chalice-color-theme",
"displayName": "Chalice Color Themes",
"description": "Minimalistic color themes based on Alabaster theme",
"version": "1.0.2",
"publisher": "artlaman",
"maintainers": [
"Artem Laman <[email protected]>"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#DDDDDD",
"theme": "light"
},
"engines": {
"vscode": "*"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"scheme",
"color-theme",
"icon-theme",
"minimal",
"sublime",
"light",
"dark",
"mono"
],
"contributes": {
"themes": [
{
"id": "chalice-color-theme-light",
"label": "Light (Chalice)",
"uiTheme": "vs",
"path": "./theme/chalice-color-theme-light.json"
},
{
"id": "chalice-color-theme-light-mono",
"label": "Light Mono (Chalice)",
"uiTheme": "vs",
"path": "./theme/chalice-color-theme-light-mono.json"
},
{
"id": "chalice-color-theme-dark",
"label": "Dark (Chalice)",
"uiTheme": "vs-dark",
"path": "./theme/chalice-color-theme-dark.json"
},
{
"id": "chalice-color-theme-dark-mono",
"label": "Dark Mono (Chalice)",
"uiTheme": "vs-dark",
"path": "./theme/chalice-color-theme-dark-mono.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/artlaman/chalice-color-theme.git"
},
"bugs": {
"url": "https://github.com/artlaman/chalice-color-theme/issues"
},
"homepage": "https://github.com/artlaman/chalice-color-theme/blob/master/README.md",
"license": "MIT"
}