-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1021 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
42
{
"name": "vscode-color-theme-spirited-away",
"displayName": "Spirited Away Color Theme",
"description": "Color theme for VSCode inspired by Spirited Away",
"version": "1.3.3",
"publisher": "MaxfieldWalker",
"galleryBanner": {
"color": "#000",
"theme": "dark"
},
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/MaxfieldWalker/vscode-color-theme-spirited-away"
},
"bugs": {
"url": "https://github.com/MaxfieldWalker/vscode-color-theme-spirited-away/issues"
},
"license": "MIT",
"engines": {
"vscode": "*"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Spirited Away",
"uiTheme": "vs-dark",
"path": "./out/out.json"
}
]
},
"scripts": {
"build": "vscode-color-theme-template ./themes/spirited-away.json ./out/out.json",
"vscode:prepublish": "npm run build"
},
"devDependencies": {
"@maxfield/vscode-color-theme-template": "^0.1.3"
}
}