-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.32 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
{
"name": "valley-vscode",
"displayName": "Valley",
"description": "Valley is a simple theme for Visual Studio Code without visual noise. Created with handpicked and vivid colors, appropriate contrast and a lot of love to help you focus on your code.",
"version": "0.4.0",
"license": "CC-BY-NC-4.0",
"publisher": "TimGrochowski",
"author": "Tim Grochowski <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/TimGr/valley-vscode"
},
"bugs": {
"url": "https://github.com/TimGr/valley-vscode/issues"
},
"homepage": "https://github.com/TimGr/valley-vscode",
"scripts": {
"build": "node -r esm build.js"
},
"galleryBanner": {
"color": "#1E1E1F",
"theme": "dark"
},
"icon": "valley-icon.png",
"keywords": [
"theme",
"color theme",
"dark theme",
"valley",
"valley theme",
"grey"
],
"engines": {
"vscode": "^1.37.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Valley",
"uiTheme": "vs-dark",
"path": "./themes/valley_dark.json"
},
{
"label": "Valley Italic",
"uiTheme": "vs-dark",
"path": "./themes/valley_dark_italic.json"
}
]
},
"devDependencies": {
"esm": "^3.2.25",
"get-contrast": "^3.0.0"
}
}