-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 716 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 716 Bytes
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
{
"name": "vscode-theme-pygment",
"displayName": "Pygment Theme",
"description": "Visual Studio Code dark theme.",
"version": "1.1.1",
"publisher": "Alexanderius",
"license": "GPLv3",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#2d2d2d",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/i4004/vscode-theme-pygment"
},
"bugs": {
"url": "https://github.com/i4004/vscode-theme-pygment/issues"
},
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Themes"
],
"keywords": [
"pygment",
"theme",
"dark"
],
"contributes": {
"themes": [
{
"label": "Pygment",
"uiTheme": "vs-dark",
"path": "./themes/pygment.json"
}
]
}
}