forked from wesbos/cobalt2-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 793 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
39
40
41
42
{
"name": "theme-cobalt2",
"version": "2.1.6",
"displayName": "Cobalt2 Theme Official",
"description": "🔥 Official theme by Wes Bos.",
"publisher": "wesbos",
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/wesbos/cobalt2-vscode"
},
"galleryBanner": {
"color": "#193549",
"theme": "dark"
},
"categories": [
"Themes"
],
"keywords": [
"VSCode",
"Themes"
],
"engines": {
"vscode": "^1.15.0"
},
"scripts": {
"start": "nodemon --exec vsce package"
},
"contributes": {
"themes": [
{
"label": "Cobalt2",
"uiTheme": "vs-dark",
"path": "./theme/cobalt2.json"
}
]
},
"devDependencies": {
"nodemon": "^1.14.12",
"vsce": "^1.36.2"
}
}