-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 823 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
{
"name": "vscode-nightsky",
"displayName": "Night Sky Theme",
"version": "2.0.0",
"description": "Night Sky VSCode Theme",
"repository": {
"type": "git",
"url": "https://github.com/ChrisRu/vscode-nightsky"
},
"publisher": "ChrisRu",
"author": "ChrisRu",
"license": "MIT",
"icon": "images/logo.png",
"categories": [
"Themes"
],
"galleryBanner": {
"color": "#222830",
"theme": "dark"
},
"engines": {
"vscode": "^1.15.0"
},
"contributes": {
"themes": [
{
"label": "Night Sky",
"uiTheme": "vs-dark",
"path": "./theme/Night Sky-color-theme.json"
}
]
},
"scripts": {
"start": "nodemon --exec vsce package",
"build": "vsce package"
},
"devDependencies": {
"nodemon": "^1.14.12",
"vsce": "^1.36.2"
}
}