forked from kevinvn1709/vscode-dracula-color-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 794 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
{
"name": "dracula-theme-from-intellij",
"displayName": "Darcula IntelliJ Theme",
"description": "A Darcula Theme inspired by IntelliJ",
"version": "0.3.0",
"license": "MIT",
"publisher": "trinm1709",
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Themes"
],
"homepage": "https://github.com/kevinvn1709/vscode-dracula-color-theme",
"repository": {
"type" : "git",
"url" : "https://github.com/kevinvn1709/vscode-dracula-color-theme.git"
},
"icon": "icon.png",
"contributes": {
"themes": [
{
"label": "Darcula Theme from IntelliJ",
"uiTheme": "vs-dark",
"path": "./themes/dracula-color-theme.json"
}
]
}
}