-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "darcula-pycharm",
"displayName": "Darcula PyCharm Theme",
"description": "PyCharm's Darcula syntax theme ported with care to VS Code",
"version": "1.0.0",
"license": "MIT",
"publisher": "garytyler",
"preview": false,
"extensionDependencies": [
"magicstack.magicpython"
],
"repository": "https://github.com/garytyler/vscode-darcula-pycharm-theme",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.21.0"
},
"categories": [
"Themes"
],
"keywords": [
"darcula",
"pycharm",
"IntelliJ",
"django",
"python"
],
"contributes": {
"themes": [{
"label": "Darcula Pycharm with Dark GUI",
"uiTheme": "vs-dark",
"path": "./themes/darcula-pycharm-dark-gui-color-theme.json"
},
{
"label": "Darcula Pycharm with Light GUI",
"uiTheme": "vs-dark",
"path": "./themes/darcula-pycharm-light-gui-color-theme.json"
}
]
},
"__metadata": {
"id": "f4d7cb0b-ba14-42cd-aef4-cc006556fbb3",
"publisherDisplayName": "garytyler",
"publisherId": "d5a91575-5edb-4e0b-828d-3d1427131779"
}
}