-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "harasta-theme",
"displayName": "harasta-theme",
"description": "My custom VS Code theme",
"publisher": "harastaivan",
"version": "1.1.0",
"engines": {
"vscode": "^1.54.0"
},
"scripts": {
"deploy": "vsce publish --yarn",
"version": "yarn changelog && code CHANGELOG.md --wait && git add CHANGELOG.md",
"changelog": "gitmoji-changelog"
},
"repository": {
"type": "git",
"url": "https://github.com/harastaivan/theme"
},
"galleryBanner": {
"color": "#333333",
"theme": "dark"
},
"categories": [
"Themes"
],
"icon": "assets/icon.png",
"keywords": [
"harastaivan theme",
"harasta theme",
"harastaivan",
"harasta"
],
"contributes": {
"themes": [
{
"label": "harastaivan theme",
"uiTheme": "vs-dark",
"path": "./themes/theme-color-theme.json"
}
]
},
"devDependencies": {
"gitmoji-changelog": "^2.3.0",
"vsce": "^2.14.0"
}
}