-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "dartcula-theme",
"displayName": "Dartcula Theme",
"publisher": "minas-giannekas",
"author": {
"name": "Minas Giannekas",
"url": "https://whidev.com"
},
"description": "A Darcula theme, with complete syntax highlighting for Dart and Flutter. Inspired by Intellij IDEA's default theme.",
"version": "1.3.0",
"icon": "theme-icon.png",
"engines": {
"vscode": "^1.63.0"
},
"repository": {
"type": "git",
"url": "https://github.com/whiplashoo/dartcula-theme.git"
},
"bugs": {
"url": "https://github.com/whiplashoo/dartcula-theme/issues"
},
"keywords": [
"dart",
"flutter",
"darcula",
"jetbrains",
"intellij"
],
"galleryBanner": {
"color": "#292B2E",
"theme": "dark"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Dartcula Theme - Basic",
"uiTheme": "vs-dark",
"path": "./themes/Dartcula Theme Basic.json"
},
{
"label": "Dartcula Theme - Pure",
"uiTheme": "vs-dark",
"path": "./themes/Dartcula Theme Pure.json"
}
]
}
}