-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "boavista",
"displayName": "Boavista",
"description": "A light theme for VSCode.",
"publisher": "jmg-duarte",
"version": "0.12.19",
"icon": "static/logo/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/jmg-duarte/boavista"
},
"homepage": "https://github.com/jmg-duarte/boavista",
"bugs": {
"url": "https://github.com/jmg-duarte/boavista/issues"
},
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Boavista Sunset",
"uiTheme": "vs",
"path": "./themes/Boavista-Sunset-color-theme.json"
},
{
"label": "Boavista (Deprecated)",
"uiTheme": "vs",
"path": "./themes/Boavista-color-theme.json"
}
]
},
"dependencies": {
"@vscode/vsce": "^2.21.1"
},
"configurationDefaults": {
"editor.semanticHighlighting.enabled": true
},
"scripts": {
"package": "vsce package",
"login": "vsce login jmg-duarte",
"publish": "vsce publish && git push && git push --tags",
"patch": "npm version patch -m 'release: %s'",
"minor": "npm version minor -m 'release: %s'",
"major": "npm version major -m 'release: %s'"
}
}