forked from Drkryz/vscode-drkcolor-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.34 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "drkryz-theme",
"displayName": "Drkryz Theme",
"description": "New drkryz theme \"Codeforce\" style with selected colors, beautiful and elegant for a \"code force\"",
"version": "1.40.25092047",
"author": "DRK - Caio Augusto",
"publisher": "drkryz",
"icon": "assets/logo.png",
"galleryBanner": {
"color": "#070707",
"theme": "dark"
},
"contributors": [
{
"name": "drpidman",
"email": "[email protected]",
"url": "https://github.com/drpidman"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Drkryz/vscode-drkcolor-theme"
},
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Drkryz Dark Theme",
"uiTheme": "vs-dark",
"path": "./themes/drkryzDark-color-theme.json"
},
{
"label": "Drkryz Smooth Dark Theme",
"uiTheme": "vs-dark",
"path": "./themes/drkryzSmoothDark-color-theme.json"
},
{
"label": "Drkryz Dark Coffee Theme",
"uiTheme": "vs-dark",
"path": "./themes/drkryzDarkcoffee-color-theme.json"
}
]
},
"keywords": [
"Themes",
"Dark theme",
"SmoothDark theme",
"Drkryz Theme"
],
"license": "MIT",
"scripts": {
"update": "node ./build/update.js",
"show": "open ./themes/drkryz.html",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
}
}