-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
70 lines (70 loc) · 1.6 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "material-palenight-theme",
"publisher": "whizkydee",
"author": "Olaolu Olawuyi <[email protected]> (http://twitter.com/mrolaolu)",
"displayName": "Palenight Theme",
"version": "2.0.4",
"description": "An elegant and juicy material-inspired theme for Visual Studio Code.",
"galleryBanner": {
"color": "#31364A",
"theme": "dark"
},
"icon": "icon.png",
"keywords": [
"material theme",
"palenight",
"material",
"purple",
"dark"
],
"repository": {
"url": "https://github.com/whizkydee/vscode-palenight-theme",
"type": "git"
},
"bugs": {
"url": "https://github.com/whizkydee/vscode-palenight-theme/issues"
},
"license": "MIT",
"engines": {
"vscode": "^1.12.0"
},
"scripts": {
"start": "nodemon --exec vsce package",
"build": "nodemon --watch src src"
},
"categories": [
"Themes",
"Other"
],
"contributes": {
"themes": [
{
"label": "Palenight Theme",
"uiTheme": "vs-dark",
"path": "./themes/palenight.json"
},
{
"label": "Palenight Italic",
"uiTheme": "vs-dark",
"path": "./themes/palenight-italic.json"
},
{
"label": "Palenight Operator",
"uiTheme": "vs-dark",
"path": "./themes/palenight-operator.json"
},
{
"label": "Palenight (Mild Contrast)",
"uiTheme": "vs-dark",
"path": "./themes/palenight-mild-contrast.json"
}
]
},
"devDependencies": {
"nodemon": "^1.12.1",
"vsce": "^1.88.0"
},
"__metadata": {
"publisherDisplayName": "Olaolu Olawuyi"
}
}