-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
57 lines (57 loc) · 1.28 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
{
"name": "vue-theme",
"version": "2.0.1",
"displayName": "Vue Theme",
"description": "Theme for Visual Studio Code inspired by javascript, with support for more popular languages and a perfect harmony of colors",
"publisher": "mariorodeghiero",
"icon": "images/vue.png",
"galleryBanner": {
"color": "#002b36",
"theme": "dark"
},
"homepage": "https://mariorodeghiero.github.io/vue-theme/",
"maintainers": [
"Mario Rodeghiero <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/mariorodeghiero/vue-theme-vscode.git"
},
"bugs": {
"url": "https://github.com/mariorodeghiero/vue-theme-vscode/issues"
},
"categories": [
"Themes"
],
"keywords": [
"VSCode",
"Themes",
"theme",
"color-theme",
"vue-theme",
"vue",
"react",
"reactjs"
],
"engines": {
"vscode": "^1.19.0"
},
"scripts": {
"build": "vsce package"
},
"contributes": {
"themes": [
{
"label": "Vue Theme",
"uiTheme": "vs-dark",
"path": "./themes/vue-theme-color-theme.json"
},
{
"label": "Vue Theme High Contrast",
"uiTheme": "hc-black",
"path": "./themes/vue-theme-color-theme-high-contrast.json"
}
]
},
"license": "MIT"
}