-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.06 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.06 KB
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
{
"name": "devmedia-theme",
"displayName": "DevMedia Theme",
"description": "Tema inspirado na DevMedia - Plataforma para Programadores",
"version": "1.1.0",
"publisher": "joaomjbraga",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"devmedia",
"dark theme",
"programming",
"brasil"
],
"contributes": {
"themes": [
{
"label": "DevMedia Dark",
"uiTheme": "vs-dark",
"path": "./themes/devmedia-dark-color-theme.json"
},
{
"label": "DevMedia Dark Modern",
"uiTheme": "vs-dark",
"path": "./themes/devmedia-dark-color-modern-theme.json"
},
{
"label": "DevMedia Light",
"uiTheme": "vs",
"path": "./themes/devmedia-light-color-theme.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/joaomjbraga/devmedia-theme"
},
"author": {
"name": "João Braga",
"url": "https://github.com/joaomjbraga"
},
"license": "MIT",
"icon": "icon.png"
}