-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.47 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
{
"name": "cold-horizon-vscode",
"version": "1.3.0",
"author": {
"name": "Vincent Fiestada",
"email": "[email protected]"
},
"displayName": "Cold Horizon Theme",
"description": "The temperature turned down on the Horizon theme for Visual Studio Code",
"publisher": "vincentfiestada",
"license": "MIT",
"icon": "icon.png",
"engines": {
"vscode": "^1.26.0"
},
"scripts": {
"format": "prettier --write --use-tabs themes/*.json"
},
"husky": {
"hooks": {
"pre-commit": "yarn format"
}
},
"galleryBanner": {
"color": "#1C1E26",
"theme": "dark"
},
"categories": [
"Themes"
],
"contributors": [
"Jonathan Olaleye <[email protected]>",
"Harold Gay",
"Matthew Fosdick"
],
"keywords": [
"theme",
"dark",
"horizon",
"cold"
],
"contributes": {
"themes": [
{
"label": "Cold Horizon",
"uiTheme": "vs-dark",
"path": "./themes/cold.json"
},
{
"label": "Cold Horizon, No Italics",
"uiTheme": "vs-dark",
"path": "./themes/normal.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/vincentfiestada/cold-horizon"
},
"homepage": "https://github.com/vincentfiestada/cold-horizon",
"bugs": {
"url": "https://github.com/vincentfiestada/cold-horizon/issues"
},
"devDependencies": {
"husky": "1.3.1",
"prettier": "1.15.3",
"vsce": "^1.54.0"
},
"dependencies": {}
}