-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 998 Bytes
/
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
{
"name": "whimsical-vscode-theme",
"version": "1.0.2",
"displayName": "Whimsical",
"description": "Dark and subdued colors with subtle variations and pleasant highlights.",
"publisher": "vanruesc",
"license": "SEE LICENSE IN LICENSE.md",
"icon": "images/logo.png",
"galleryBanner": {
"color": "#f9f8f6",
"theme": "light"
},
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"Themes"
],
"keywords": [
"VSCode",
"Themes",
"Whimsical",
"Waher"
],
"contributes": {
"themes": [
{
"label": "Whimsical",
"uiTheme": "vs-dark",
"path": "./themes/whimsical-color-theme.json"
},
{
"label": "Whimsical (Waher)",
"uiTheme": "vs-dark",
"path": "./themes/whimsical-waher-color-theme.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/vanruesc/whimsical-vscode-theme.git"
},
"scripts": {
"bundle": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@vscode/vsce": "3.x.x"
}
}