-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 913 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
{
"name": "monokai-lite",
"displayName": "Monokai Lite",
"description": "This is a theme based on Monokai but without extra underline or italics.",
"version": "0.0.2",
"icon": "images/favicon.ico",
"publisher": "HarveyWang",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wanghuiyt/Monokai-Lite.git"
},
"engines": {
"vscode": "*"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Monokai Lite without underline",
"uiTheme": "vs-dark",
"path": "./themes/without_underline.json"
},
{
"label": "Monokai Lite without underline&italic",
"uiTheme": "vs-dark",
"path": "./themes/without_underline_italic.json"
}
]
}
}