-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 849 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
{
"name": "papercolor-vscode",
"displayName": "papercolor-vscode",
"description": "the popular color theme from VIM to VsCode",
"version": "1.0.2",
"publisher": "rozbo",
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Themes"
],
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/rozbo/papercolor-vscode.git"
},
"contributes": {
"themes": [
{
"label": "papercolor-vscode-light",
"uiTheme": "vs",
"path": "./themes/papercolor-light-color-theme.json"
},
{
"label": "papercolor-vscode-dark",
"uiTheme": "vs-dark",
"path": "./themes/papercolor-dark-color-theme.json"
}
]
}
}