-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.07 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
{
"name": "colorblind-theme",
"displayName": "Colorblind Theme",
"publisher": "GivenSuman",
"author": {
"name": "Given Suman"
},
"description": "Colorblind friendly syntax highlighting for VSCode",
"version": "2.0.0",
"license": "GPL-3.0-or-later",
"engines": {
"vscode": "^1.11.0"
},
"categories": [
"Themes"
],
"galleryBanner": {
"color": "#252427",
"theme": "dark"
},
"icon": "assets/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/givensuman/colorblind-theme"
},
"scripts": {
"ls": "pnpm dlx vsce ls",
"package": "pnpm dlx vsce package --out packages/",
"make": "(cd make && python3 main.py);"
},
"keywords": [
"dark",
"theme",
"vscode",
"color blind",
"color-blind",
"syntax",
"deuteranomaly",
"protanomaly",
"tritanomaly",
"deuteranopia",
"protanopia",
"tritanopia"
],
"contributes": {
"themes": [
{
"label": "Colorblind Theme",
"uiTheme": "vs-dark",
"path": "colorblind-theme.json"
}
]
}
}