-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 863 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
{
"name": "starburst-theme",
"displayName": "Starburst Theme",
"description": "A colorful theme!",
"version": "0.2.0",
"publisher": "psanchez",
"icon": "icon_square.jpg",
"categories": [
"Themes"
],
"repository": "https://github.com/PaleBluDot/starburst-theme",
"author": {
"name": "Pavel Sanchez"
},
"engines": {
"vscode": "^1.20.0"
},
"contributes": {
"themes": [
{
"label": "Starburst Dark",
"uiTheme": "vs-dark",
"path": "./themes/starburst-dark.json"
}
]
},
"__metadata": {
"id": "3fabeda3-a1cc-4565-a586-9c356f9a471b",
"publisherDisplayName": "PSD",
"publisherId": "417ecddc-e1db-4da0-bc02-79a96cabe5c9"
},
"scripts": {
"package": "vsce package",
"publish": "vsce publish",
"publish:patch": "vsce publish patch",
"publish:minor": "vsce publish minor",
"publish:major": "vsce publish major"
}
}