forked from Binaryify/OneDark-Pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 987 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
52
{
"name": "red-pro-theme",
"displayName": "RedPro Theme",
"version": "1.0.2",
"publisher": "DaGhostman",
"license": "MIT",
"bugs": {
"url": "https://github.com/DaGhostman/vs-red-pro-theme/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/DaGhostman/vs-red-pro-theme"
},
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Themes"
],
"scripts": {
"build": "node build.js"
},
"pre-commit": [
"build"
],
"prettier": {
"singleQuote": true,
"semi": false
},
"contributes": {
"themes": [
{
"label": "RedPro Dark",
"uiTheme": "vs-dark",
"path": "./themes/RedPro-Dark.json"
},
{
"label": "RedPro Light",
"uiTheme": "vs",
"path": "./themes/RedPro-Light.json"
}
]
},
"devDependencies": {
"lodash": "^4.17.11",
"pre-commit": "^1.2.2"
},
"galleryBanner": {
"color": "#9c000d",
"theme": "dark"
}
}