-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (55 loc) · 927 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
51
52
53
54
55
56
{
"name": "mtheme",
"displayName": "Mtheme",
"description": "👌 A Simplistic Minimal Theme For Vscode",
"version": "1.0.0",
"publisher": "mohsin",
"engines": {
"vscode": "^1.15.0"
},
"icon": "images/icon/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/mohsinxx365/mtheme"
},
"galleryBanner": {
"color": "#143d59",
"theme": "dark"
},
"categories": [
"Themes"
],
"keywords": [
"Mtheme",
"MiTheme",
"mtheme",
"Dark Theme",
"Cobalt",
"VSCode Power User",
"Shade of Purple",
"Shades of Purple"
],
"contributes": {
"themes": [
{
"label": "MTheme",
"uiTheme": "vs-dark",
"path": "./themes/mtheme.json"
}
]
},
"devDependencies": {
"nodemon": "^1.18.10"
},
"files": [
".vscodeignore",
"themes/mtheme.json",
"themes",
"themes/*",
"images/logo.png",
"package.json"
],
"scripts": {
"start": "nodemon --exec vsce package"
}
}