-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.96 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
70
71
72
73
74
{
"name": "calico",
"displayName": "Calico Theme",
"description": "A VS Code theme inspired by my calico cat Delilah",
"version": "0.2.0",
"publisher": "snenenenenenene",
"license": "MIT",
"author": {
"name": "Senne Bels",
"url": "http://github.com/snenenenenenene"
},
"icon": "./icon.png",
"keywords": [
"visual studio code",
"themes",
"colour theme",
"theming",
"extension",
"calico",
"theme",
"calico",
"light theme",
"dark theme",
"cat",
"high contrast"
],
"repository": {
"type": "git",
"url": "git+https://github.com/snenenenenenene/vscode-calico.git"
},
"bugs": {
"url": "https://github.com/snenenenenenene/vscode-calico/issues"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Calico Light Flat",
"uiTheme": "vs",
"path": "./themes/calico-light-flat.json"
},
{
"label": "Calico Dark Flat",
"uiTheme": "vs-dark",
"path": "./themes/calico-dark-flat.json"
},
{
"label": "Calico Light",
"uiTheme": "vs",
"path": "./themes/calico-light.json"
},
{
"label": "Calico Dark",
"uiTheme": "vs-dark",
"path": "./themes/calico-dark.json"
},
{
"label": "Calico Light High Contrast",
"uiTheme": "vs",
"path": "./themes/calico-light-high-contrast.json"
},
{
"label": "Calico Dark High Contrast",
"uiTheme": "vs-dark",
"path": "./themes/calico-dark-high-contrast.json"
}
]
}
}