-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 991 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "theme-dracula-gray",
"version": "1.0.1",
"displayName": "Dracula Gray",
"description": "Dracula Gray Theme",
"publisher": "npv2k1",
"license": "MIT",
"scripts": {
"package": "vsce package -o ./bin/dracula-gray.vsix",
"vsce-publish": "vsce publish"
},
"maintainers": [
"Nguyen Pham <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/npv2k1/dracula-gray.git"
},
"bugs": {
"url": "https://github.com/npv2k1/dracula-gray/issues"
},
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"keywords": [
"dracula",
"dark",
"theme",
"color-theme"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#3c4557",
"theme": "dark"
},
"contributes": {
"themes": [
{
"label": "Dracula Gray",
"uiTheme": "vs-dark",
"path": "./themes/dracula-gray.json"
}
]
},
"devDependencies": {
"vsce": "^2.7.0"
}
}