-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 714 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 714 Bytes
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
{
"name": "monokai-dark-theme",
"displayName": "Monokai Dark Theme",
"description": "A Monokai theme base on vscode dark color theme",
"version": "0.0.3",
"author": "Treevel Li",
"publisher": "Treevel",
"license": "MIT",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/treevel/vscode-theme-monokai-dark"
},
"engines": {
"vscode": "^1.78.0"
},
"categories": [
"Themes"
],
"keywords": [
"Monokai",
"VSCode theme",
"theme",
"dark"
],
"contributes": {
"themes": [
{
"label": "Monokai Dark Theme",
"uiTheme": "vs-dark",
"path": "./themes/monokai-dark-color-theme.json"
}
]
}
}