-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
68 lines (68 loc) · 1.76 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
{
"name": "winteriscoming",
"displayName": "Winter is Coming Theme",
"description": "Preferred dark/light themes by John Papa",
"icon": "images/winteriscoming-icon.png",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/johnpapa/vscode-winteriscoming.git"
},
"galleryBanner": {
"color": "#373436",
"theme": "dark"
},
"version": "1.4.4",
"publisher": "johnpapa",
"keywords": [
"Theme",
"Dark Theme",
"Light Theme"
],
"scripts": {
"list": "npx vsce ls",
"package": "npx vsce package",
"publish": "npx vsce publish"
},
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Themes",
"Other"
],
"contributes": {
"themes": [
{
"label": "Winter is Coming (Dark Blue)",
"uiTheme": "vs-dark",
"path": "./themes/WinterIsComing-dark-blue-color-theme.json"
},
{
"label": "Winter is Coming (Dark Blue - No Italics)",
"uiTheme": "vs-dark",
"path": "./themes/WinterIsComing-dark-blue-color-no-italics-theme.json"
},
{
"label": "Winter is Coming (Light)",
"uiTheme": "vs",
"path": "./themes/WinterIsComing-light-color-theme.json"
},
{
"label": "Winter is Coming (Light - No Italics)",
"uiTheme": "vs",
"path": "./themes/WinterIsComing-light-color-no-italics-theme.json"
},
{
"label": "Winter is Coming (Dark Black)",
"uiTheme": "vs-dark",
"path": "./themes/WinterIsComing-dark-color-theme.json"
},
{
"label": "Winter is Coming (Dark Black - No Italics)",
"uiTheme": "vs-dark",
"path": "./themes/WinterIsComing-dark-color-no-italics-theme.json"
}
]
}
}