-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.41 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
60
61
62
63
{
"name": "vscode-webstorm-theme",
"displayName": "WebStorm New Theme",
"description": "A WebStorm Theme Plugin for VS Code",
"version": "1.0.0",
"publisher": "SeptWong",
"icon": "assets/images/logo.png",
"galleryBanner": {
"color": "#1e1f22",
"theme": "dark"
},
"engines": {
"vscode": "^1.90.0"
},
"repository": {
"type": "git",
"url": "https://github.com/septwong/vscode-webstorm-theme"
},
"bugs": {
"url": "https://github.com/septwong/vscode-webstorm-theme/issues",
"email": "[email protected]"
},
"license": "MIT",
"categories": [
"Themes"
],
"keywords": [
"theme",
"webstorm",
"dark theme",
"jetbrains",
"intellij"
],
"contributes": {
"themes": [
{
"label": "WebStorm Darker",
"uiTheme": "vs-dark",
"path": "./themes/webstorm-darker-color-theme.json"
},
{
"label": "WebStorm Darcula",
"uiTheme": "vs-dark",
"path": "./themes/webstorm-darcula-color-theme.json"
},
{
"label": "WebStorm Dark",
"uiTheme": "vs-dark",
"path": "./themes/webstorm-dark-color-theme.json"
},
{
"label": "WebStorm New Dark",
"uiTheme": "vs-dark",
"path": "./themes/new_dark.json"
},
{
"label": "WebStorm New Darcula",
"uiTheme": "vs-dark",
"path": "./themes/new_darcula.json"
}
]
}
}