-
Notifications
You must be signed in to change notification settings - Fork 194
/
package.json
107 lines (107 loc) · 2.57 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "github-vscode-theme",
"displayName": "GitHub Theme",
"description": "GitHub theme for VS Code",
"version": "6.3.5",
"publisher": "GitHub",
"license": "MIT",
"icon": "icon.png",
"galleryBanner": {
"color": "#1b1f23",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/primer/github-vscode-theme"
},
"bugs": {
"url": "https://github.com/primer/github-vscode-theme/issues"
},
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"github",
"light",
"dark",
"protanopia",
"colorblind"
],
"contributes": {
"themes": [
{
"label": "GitHub Light Default",
"uiTheme": "vs",
"path": "./themes/light-default.json"
},
{
"label": "GitHub Light High Contrast",
"uiTheme": "hc-light",
"path": "./themes/light-high-contrast.json"
},
{
"label": "GitHub Light Colorblind (Beta)",
"uiTheme": "vs",
"path": "./themes/light-colorblind.json"
},
{
"label": "GitHub Dark Default",
"uiTheme": "vs-dark",
"path": "./themes/dark-default.json"
},
{
"label": "GitHub Dark High Contrast",
"uiTheme": "hc-black",
"path": "./themes/dark-high-contrast.json"
},
{
"label": "GitHub Dark Colorblind (Beta)",
"uiTheme": "vs-dark",
"path": "./themes/dark-colorblind.json"
},
{
"label": "GitHub Dark Dimmed",
"uiTheme": "vs-dark",
"path": "./themes/dark-dimmed.json"
},
{
"label": "GitHub Light",
"uiTheme": "vs",
"path": "./themes/light.json"
},
{
"label": "GitHub Dark",
"uiTheme": "vs-dark",
"path": "./themes/dark.json"
}
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.1",
"@changesets/cli": "^2.17.0",
"@primer/primitives": "7.10.0",
"chroma-js": "^2.1.2",
"color": "^3.1.2",
"nodemon": "^2.0.3",
"vsce": "^1.100.1"
},
"scripts": {
"start": "nodemon --watch src src/index.js",
"build": "node src/index.js && mkdir -p build",
"package": "vsce package -o ./build/github-vscode-theme.vsix",
"prepublishOnly": "npm run build && vsce publish",
"release": "changeset publish"
},
"__metadata": {
"id": "7328a705-91fc-49e6-8293-da6f112e482d",
"publisherDisplayName": "GitHub",
"publisherId": "7c1c19cd-78eb-4dfb-8999-99caf7679002"
},
"publishConfig": {
"access": "public"
}
}