-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 949 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
44
45
46
47
48
49
50
51
{
"name": "theme-one",
"displayName": "One Themes",
"description": "One Themes for VSCode",
"categories": [
"Themes"
],
"keywords": [
"One Dark",
"One Light",
"Atom One Dark",
"Atom One Light",
"One Themes",
"Atom Themes"
],
"version": "1.10.0",
"author": {
"name": "Victor Roșu",
"url": "https://github.com/mrred85"
},
"publisher": "mrred85",
"maintainers": [
"Victor Roșu (mrred85)"
],
"engines": {
"vscode": "^1.42.0"
},
"icon": "icon.png",
"homepage": "https://github.com/mrred85/vscode-theme-one",
"repository": {
"type": "git",
"url": "https://github.com/mrred85/vscode-theme-one"
},
"bugs": {
"url": "https://github.com/mrred85/vscode-theme-one/issues"
},
"contributes": {
"themes": [
{
"label": "One Dark",
"uiTheme": "vs-dark",
"path": "./themes/one-dark.json"
},
{
"label": "One Light",
"uiTheme": "vs",
"path": "./themes/one-light.json"
}
]
}
}