forked from tokyo-night/tokyo-night-vscode-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "tokyo-night",
"displayName": "Tokyo Night",
"description": "A clean Visual Studio Code theme that celebrates the lights of Downtown Tokyo at night.",
"version": "0.8.4",
"publisher": "enkia",
"license": "MIT",
"keywords": [
"theme",
"contrast",
"dark",
"light",
"tokyo",
"clean"
],
"icon": "icon.png",
"homepage": "https://github.com/enkia/tokyo-night-vscode-theme",
"repository": {
"url": "https://github.com/enkia/tokyo-night-vscode-theme",
"type": "git"
},
"bugs": {
"url": "https://github.com/enkia/tokyo-night-vscode-theme/issues"
},
"galleryBanner": {
"color": "#1f2335",
"theme": "dark"
},
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Themes",
"Other"
],
"contributes": {
"themes": [
{
"label": "Tokyo Night",
"uiTheme": "vs-dark",
"path": "./themes/tokyo-night-color-theme.json"
},
{
"label": "Tokyo Night Storm",
"uiTheme": "vs-dark",
"path": "./themes/tokyo-night-storm-color-theme.json"
},
{
"label": "Tokyo Night Light",
"uiTheme": "vs",
"path": "./themes/tokyo-night-light-color-theme.json"
}
]
},
"scripts": {
"package": "vsce package",
"publish": "vsce publish"
}
}