-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "minimal-wave",
"displayName": "Minimal Wave",
"description": "Collection of minimal themes with a hint of synthwave",
"version": "0.0.3",
"publisher": "annalifatou",
"author": {
"name": "Anna Li-Fatou"
},
"repository": {
"type": "git",
"url": "https://github.com/annalifatou/minimal-wave"
},
"bugs": {
"url": "https://github.com/annalifatou/minimal-wave/issues"
},
"icon": "images/logo.png",
"galleryBanner": {
"color": "#121316",
"theme": "dark"
},
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Themes"
],
"keywords": [
"Dark theme",
"Light theme",
"Minimal",
"Floral",
"Purple"
],
"contributes": {
"themes": [
{
"label": "Minimal Wave - Dark Floral",
"uiTheme": "vs-dark",
"path": "./themes/MinimalWave-dark-floral-color-theme.json"
},
{
"label": "Minimal Wave - Light Floral",
"uiTheme": "vs",
"path": "./themes/MinimalWave-light-floral-color-theme.json"
}
]
}
}