-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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": "sv-color-theme",
"displayName": "SV Color Theme",
"publisher": "rogeriosantos",
"description": "Unofficial VS Code theme based on Svelte website color scheme.",
"icon": "sv-logo.jpg",
"scripts": {
"release": "standard-version",
"commit": "cz"
},
"galleryBanner": {
"color": "#fff",
"theme": "light"
},
"version": "0.1.15",
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "SV Color Theme",
"uiTheme": "vs",
"path": "./themes/sv-color-theme.json"
},
{
"label": "SV Color Theme Dark Terminal",
"uiTheme": "vs",
"path": "./themes/sv-color-theme-dark-terminal.json"
}
]
},
"repository": {
"url": "https://github.com/rogeriosantosf/sv-vscode-theme"
},
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"standard-version": "^9.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}