-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
92 lines (92 loc) · 2.16 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "monochrome",
"displayName": "Monochrome",
"description": "Monochromatic theme collection, for those who seeks.",
"publisher": "anotherglitchinthematrix",
"version": "2.4.3",
"license": "MIT",
"icon": "icon.png",
"galleryBanner": {
"color": "#1a1a1a",
"theme": "dark"
},
"author": {
"name": "Ali Can YILDIZ",
"email": "anotherglitchinthematrix@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/anotherglitchinthematrix/monochrome.git"
},
"bugs": {
"url": "https://github.com/anotherglitchinthematrix/monochrome/issues"
},
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"light",
"dark",
"monochrome",
"minimal",
"minimalist",
"subtle"
],
"contributes": {
"themes": [
{
"label": "Monochrome Dark",
"uiTheme": "vs-dark",
"path": "./theme/monochrome-dark.json"
},
{
"label": "Monochrome Light",
"uiTheme": "vs",
"path": "./theme/monochrome-light.json"
},
{
"label": "Monochrome Dark Subtle",
"uiTheme": "vs-dark",
"path": "./theme/monochrome-dark-subtle.json"
},
{
"label": "Monochrome Light Subtle",
"uiTheme": "vs",
"path": "./theme/monochrome-light-subtle.json"
},
{
"label": "Monochrome Dark Amplified",
"uiTheme": "vs-dark",
"path": "./theme/monochrome-dark-amplified.json"
},
{
"label": "Monochrome Light Amplified",
"uiTheme": "vs",
"path": "./theme/monochrome-light-amplified.json"
},
{
"label": "Monochrome Dark Cool Gray",
"uiTheme": "vs-dark",
"path": "./theme/monochrome-dark-cool-gray.json"
},
{
"label": "Monochrome Light Cool Gray",
"uiTheme": "vs",
"path": "./theme/monochrome-light-cool-gray.json"
}
]
},
"devDependencies": {
"chroma-js": "^2.1.0",
"lodash.merge": "^4.6.2",
"nodemon": "^2.0.9"
},
"scripts": {
"start": "nodemon --watch src src/index.js",
"build": "node src/index.js"
}
}