-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "an-old-hope-theme-vscode",
"displayName": "An Old Hope Theme",
"description": "vscode theme inspired by a galaxy far far away...",
"version": "4.4.0",
"publisher": "dustinsanders",
"scripts": {
"prebuild": "rm -rf themes && mkdir themes",
"build": "node ./src/writeTheme.js",
"install:local": "node ./installLocal.js"
},
"repository": {
"type": "git",
"url": "[email protected]:dustinsanders/an-old-hope-theme-vscode.git"
},
"engines": {
"vscode": "^1.0.0"
},
"icon": "icon.png",
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "An Old Hope",
"uiTheme": "vs-dark",
"path": "./themes/AnOldHope.json"
},
{
"label": "An Old Hope Italic",
"uiTheme": "vs-dark",
"path": "./themes/AnOldHopeItalic.json"
},
{
"label": "An Old Hope Classic",
"uiTheme": "vs-dark",
"path": "./legacy/AnOldHope.tmTheme"
},
{
"label": "An Old Hope Light",
"uiTheme": "vs",
"path": "./legacy/AnOldHopeLight.tmTheme"
}
]
}
}