This repository has been archived by the owner on Aug 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
75 lines (75 loc) · 1.69 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
{
"name": "horizon-theme-vscode",
"version": "2.0.2",
"author": "Jonathan Olaleye <j.olaleye.o@gmail.com>",
"displayName": "Horizon Theme",
"description": "A beautifully warm dual theme for Visual Studio Code",
"publisher": "jolaleye",
"license": "MIT",
"icon": "logo.png",
"scripts": {
"build": "npm run build:dark && npm run build:bright",
"build:dark": "node src/dark/build",
"build:bright": "node src/bright/build"
},
"engines": {
"vscode": "^1.26.0"
},
"galleryBanner": {
"color": "#FCEAE5",
"theme": "light"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"dark",
"horizon",
"warm"
],
"contributes": {
"themes": [
{
"label": "Horizon",
"uiTheme": "vs-dark",
"path": "./themes/horizon.json"
},
{
"label": "Horizon Italic",
"uiTheme": "vs-dark",
"path": "./themes/horizon-italic.json"
},
{
"label": "Horizon Bold",
"uiTheme": "vs-dark",
"path": "./themes/horizon-bold.json"
},
{
"label": "Horizon Bright",
"uiTheme": "vs",
"path": "./themes/horizon-bright.json"
},
{
"label": "Horizon Bright Italic",
"uiTheme": "vs",
"path": "./themes/horizon-bright-italic.json"
},
{
"label": "Horizon Bright Bold",
"uiTheme": "vs",
"path": "./themes/horizon-bright-bold.json"
}
]
},
"devDependencies": {
"mustache": "^3.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jolaleye/horizon-theme-vscode"
},
"bugs": {
"url": "https://github.com/jolaleye/horizon-theme-vscode/issues"
}
}