-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 842 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
{
"name": "sheme",
"displayName": "Sheme",
"description": "My dark Theme for Visual Studio Code.",
"version": "1.0.2",
"publisher": "shoedler",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shoedler/vscode-sheme"
},
"icon": "sheme.png",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Themes"
],
"keyword": [
"Theme",
"Dark Theme"
],
"contributes": {
"themes": [
{
"label": "Sheme",
"uiTheme": "vs-dark",
"path": "./themes/sheme.color-theme.json"
}
]
},
"scripts": {
"publish-patch": "vsce publish patch -m ':arrow_up: patch update (%s)'",
"publish-minor": "vsce publish minor -m ':arrow_up: minor update (%s)'",
"publish-major": "vsce publish major -m ':arrow_up: major update (%s)'"
}
}