-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.12 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "buzzokai-dimmed",
"displayName": "Buzzokai Dimmed",
"description": "A collection of dark, dimmed and eye-comforting VS Code color themes for better productivity. Easily switch between themes by typing 'buzzokai' in the Command Palette.",
"publisher": "HRIDOY-BUZZ",
"version": "2.0.2",
"icon": "logo.jpg",
"license": "MIT",
"engines": {
"vscode": "^1.75.1"
},
"categories": [
"Themes"
],
"main": "./extension.js",
"activationEvents": [
"onCommand:buzzokai.*"
],
"contributes": {
"themes": [
{
"label": "Buzzokai Mono Dark",
"uiTheme": "vs-dark",
"path": "./themes/buzzokai-mono-dark-color-theme.json"
},
{
"label": "Buzzokai Mono Green",
"uiTheme": "vs-dark",
"path": "./themes/buzzokai-mono-green-color-theme.json"
},
{
"label": "Buzzokai Reversed Dark",
"uiTheme": "vs-dark",
"path": "./themes/buzzokai-reversed-dark-color-theme.json"
},
{
"label": "Buzzokai GitHub Dark",
"uiTheme": "vs-dark",
"path": "./themes/buzzokai-github-dark-color-theme.json"
},
{
"label": "Buzzokai Material Dark",
"uiTheme": "vs-dark",
"path": "./themes/buzzokai-material-dark-color-theme.json"
},
{
"label": "Buzzokai Material Blue",
"uiTheme": "vs-dark",
"path": "./themes/buzzokai-material-blue-color-theme.json"
},
{
"label": "Buzzokai Shopify Blue",
"uiTheme": "vs-dark",
"path": "./themes/buzzokai-shopify-blue-color-theme.json"
},
{
"label": "Buzzokai Shopify Green",
"uiTheme": "vs-dark",
"path": "./themes/buzzokai-shopify-Green-color-theme.json"
}
],
"commands": [
{
"command": "buzzokai.mono",
"title": "Buzzokai Mono Dark"
},
{
"command": "buzzokai.monoGreen",
"title": "Buzzokai Mono Green"
},
{
"command": "buzzokai.reversed",
"title": "Buzzokai Reversed Dark"
},
{
"command": "buzzokai.github",
"title": "Buzzokai GitHub Dark"
},
{
"command": "buzzokai.material",
"title": "Buzzokai Material Dark"
},
{
"command": "buzzokai.materialBlue",
"title": "Buzzokai Material Blue"
},
{
"command": "buzzokai.shopifyBlue",
"title": "Buzzokai Shopify Blue"
},
{
"command": "buzzokai.shopifyGreen",
"title": "Buzzokai Shopify Green"
}
]
},
"keywords": [
"buzzokai", "monokai", "material", "dimmed", "dark theme", "eye comfort",
"color", "theme", "color theme", "github", "dark", "blue", "green", "forest",
"midnight", "shopify", "dim", "mono", "hridoy", "buzz", "hridoy-buzz"
],
"repository": {
"type": "git",
"url": "https://github.com/HRIDOY-BUZZ/buzzokai-dimmed.git"
},
"homepage": "https://github.com/HRIDOY-BUZZ/buzzokai-dimmed#readme",
"bugs": {
"url": "https://github.com/HRIDOY-BUZZ/buzzokai-dimmed/issues"
},
"galleryBanner": {
"color": "#1E1E1E",
"theme": "dark"
}
}