-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
executable file
·60 lines (60 loc) · 1.23 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
51
52
53
54
55
56
57
58
59
60
{
"name": "theme-levelup",
"version": "0.2.4",
"displayName": "Level Up Theme Official",
"description": "➕ Official theme of Level Up Tutorials ➕",
"publisher": "leveluptutorials",
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/leveluptuts/level-up-vscode-theme"
},
"galleryBanner": {
"color": "#524763",
"theme": "dark"
},
"categories": [
"Themes"
],
"keywords": [
"VSCode",
"Themes",
"Dope",
"syntax.fm",
"level up tutorials"
],
"engines": {
"vscode": "^1.15.0"
},
"scripts": {
"start": "nodemon --exec vsce package"
},
"contributes": {
"themes": [
{
"label": "Level Up",
"uiTheme": "vs-dark",
"path": "./theme/levelup.json"
},
{
"label": "Level Up Lighter",
"uiTheme": "vs-dark",
"path": "./theme/two.json"
},
{
"label": "Level Up Syntax",
"uiTheme": "vs-dark",
"path": "./theme/syntax.json"
},
{
"label": "Level Up Syntax Cyber",
"uiTheme": "vs-dark",
"path": "./theme/syntax-cyber.json"
}
]
},
"dependencies": {
"nodemon": "^1.12.0",
"vsce": "^1.30.0"
}
}