-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
90 lines (90 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
{
"name": "adwaita-theme",
"icon": "assets/icon.png",
"displayName": "Adwaita",
"description": "Theme for the GNOME desktop",
"version": "1.1.0",
"publisher": "piousdeer",
"license": "GPL-3.0-only",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Themes"
],
"keywords": [
"gnome",
"libadwaita",
"gtk",
"gtk4"
],
"homepage": "https://github.com/piousdeer/vscode-adwaita",
"bugs": {
"url": "https://github.com/piousdeer/vscode-adwaita/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/piousdeer/vscode-adwaita.git"
},
"contributes": {
"themes": [
{
"label": "Adwaita Dark",
"uiTheme": "vs-dark",
"path": "./themes/adwaita-dark.json"
},
{
"label": "Adwaita Dark & colorful status bar",
"uiTheme": "vs-dark",
"path": "./themes/adwaita-dark-colorful-status-bar.json"
},
{
"label": "Adwaita Dark & default syntax highlighting",
"uiTheme": "vs-dark",
"path": "./themes/adwaita-dark-default-syntax-highlighting.json"
},
{
"label": "Adwaita Dark & default syntax highlighting & colorful status bar",
"uiTheme": "vs-dark",
"path": "./themes/adwaita-dark-default-syntax-highlighting-colorful-status-bar.json"
},
{
"label": "Adwaita Light",
"uiTheme": "vs",
"path": "./themes/adwaita-light.json"
},
{
"label": "Adwaita Light & colorful status bar",
"uiTheme": "vs",
"path": "./themes/adwaita-light-colorful-status-bar.json"
},
{
"label": "Adwaita Light & default syntax highlighting",
"uiTheme": "vs",
"path": "./themes/adwaita-light-default-syntax-highlighting.json"
},
{
"label": "Adwaita Light & default syntax highlighting & colorful status bar",
"uiTheme": "vs",
"path": "./themes/adwaita-light-default-syntax-highlighting-colorful-status-bar.json"
}
],
"productIconThemes": [
{
"id": "adwaita",
"label": "Adwaita",
"path": "./product-icons/adwaita.json"
}
]
},
"scripts": {
"build:color-themes": "cd src && python3 build.py",
"build:product-icons": "nanoemoji --color_format glyf_colr_1 --family adwaita-icons --output_file product-icons/adwaita-icons.ttf product-icons/scalable/*.svg"
},
"__metadata": {
"id": "93fbc635-4a9a-4ff1-88ba-bf017484c602",
"publisherDisplayName": null,
"publisherId": "93befe42-7314-4d14-8724-19419a27ed64",
"isPreReleaseVersion": false
}
}