-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "phonebook-theme",
"scripts": {
"package": "vsce package -o ./releases/",
"publish": "vsce publish"
},
"repository": {
"type": "git",
"url": "https://github.com/nickcarnival/vscode-phonebook.git"
},
"license": "MIT",
"homepage": "https://www.github.com/nickcarnival/vscode-phonebook",
"bugs": {
"url": "https://www.github.com/nickcarnival/vscode-phonebook/issues"
},
"publisher": "nick-carnival",
"displayName": "Phonebook Theme",
"description": "A VSCode theme with lots of brown",
"galleryBanner": {
"color": "#5d4e3c",
"theme": "dark"
},
"version": "1.1.1",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Themes"
],
"icon": "images/logo.png",
"contributes": {
"themes": [
{
"label": "Phonebook Dark",
"uiTheme": "vs-dark",
"path": "./themes/phonebook-dark-color-theme.json"
},
{
"label": "Phonebook Light",
"uiTheme": "vs",
"path": "./themes/phonebook-light-color-theme.json"
}
]
},
"devDependencies": {
"@vscode/vsce": "^2.21.0"
}
}