-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.06 KB
/
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
{
"name": "daybreak-theme",
"author": "Mike Mali <[email protected]> (http://twitter.com/mtdmali)",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/mtdmali/daybreak-theme"
},
"license": "MIT",
"publisher": "mtdmali",
"displayName": "Daybreak",
"description": "A VS Code theme for those who work through the night.",
"icon": "logo.png",
"engines": {
"vscode": "^1.36.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Daybreak",
"uiTheme": "vs-dark",
"path": "./themes/daybreak-color-theme.json"
},
{
"label": "Daybreak (Italic)",
"uiTheme": "vs-dark",
"path": "./themes/daybreak-color-theme-italic.json"
},
{
"label": "Daybreak (Bold)",
"uiTheme": "vs-dark",
"path": "./themes/daybreak-color-theme-bold.json"
}
],
"iconThemes": [
{
"id": "Daybreak",
"label": "Daybreak",
"path": "./icons/daybreak-icon-theme.json"
}
]
}
}