-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 937 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
43
{
"name": "michijs-vscode-material-theme",
"displayName": "Michi Material Theme",
"description": "Vscode Material theme built following Google guidelines",
"author": "Lucas M. Segurado",
"icon": "media/material.png",
"repository": "https://github.com/michijs/vscode-material-theme",
"galleryBanner": {
"color": "#672122",
"theme": "dark"
},
"sponsor": {
"url": "https://github.com/sponsors/michijs"
},
"files": [
"dist/"
],
"license": "MIT",
"version": "1.0.1",
"publisher": "michijs",
"engines": {
"vscode": "^1.76.0"
},
"categories": [
"Themes"
],
"scripts": {
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@vscode/vsce": "2.18.0"
},
"contributes": {
"themes": [
{
"label": "Michi Material Theme",
"uiTheme": "vs-dark",
"path": "./themes/material-color-theme.json"
}
]
}
}