forked from balanceiskey/vsc-material-theme
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.54 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
{
"name": "xd-theme",
"displayName": "XD Theme",
"description": "A theme because my settings file was too large",
"version": "0.2.32",
"publisher": "jeff-hykin",
"license": "MIT",
"author": "Jeff Hykin",
"icon": "logo.png",
"galleryBanner": {
"color": "#11131C",
"theme": "dark"
},
"engines": {
"vscode": "^1.31.0"
},
"scripts": {
"build": "ruby theme_generator.rb",
"publish": "npm run build && git add -A && git commit -m \"commit\" && git pull && git push && vsce publish patch && git push"
},
"categories": [
"Themes",
"Other"
],
"keywords": [
"VSCode",
"Themes"
],
"contributes": {
"themes": [
{
"label": "XD Theme",
"path": "./export/theme.json",
"uiTheme": "vs-dark"
},
{
"label": "XD Theme - Lighten",
"path": "./export/theme-lighten.json",
"uiTheme": "vs-dark"
},
{
"label": "XD Theme - MixItUp",
"path": "./export/theme-mix-it-up.json",
"uiTheme": "vs-dark"
},
{
"label": "XD Theme - Two Tone",
"path": "./export/theme-two-tone.json",
"uiTheme": "vs-dark"
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeff-hykin/vsc-material-theme.git"
},
"bugs": {
"url": "https://github.com/jeff-hykin/vsc-material-theme/issues"
},
"homepage": "https://github.com/jeff-hykin/vsc-material-theme#readme",
"dependencies": {
"@vscode/vsce": "=2.15.0",
"ovsx": "=0.7.1"
},
"devDependencies": {}
}