forked from EYHN/vscode-vibrancy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.35 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "vscode-vibrancy",
"displayName": "Vibrancy",
"description": "Vibrancy Effect for Visual Studio Code",
"version": "1.0.16",
"publisher": "eyhn",
"author": {
"email": "[email protected]",
"name": "eyhn",
"url": "https://eyhn.in"
},
"engines": {
"vscode": "^1.57.0"
},
"categories": [
"Other",
"Themes"
],
"repository": {
"type": "git",
"url": "https://github.com/EYHN/vscode-vibrancy"
},
"bugs": {
"url": "https://github.com/EYHN/vscode-vibrancy/issues"
},
"preview": true,
"icon": "images/logo.png",
"galleryBanner": {
"color": "#EEEEEE"
},
"activationEvents": [
"*"
],
"main": "./extension/index.js",
"contributes": {
"commands": [
{
"command": "extension.installVibrancy",
"title": "%extension.installVibrancy.title%"
},
{
"command": "extension.uninstallVibrancy",
"title": "%extension.uninstallVibrancy.title%"
},
{
"command": "extension.updateVibrancy",
"title": "%extension.updateVibrancy.title%"
}
],
"configuration": {
"title": "Vibrancy Effect",
"properties": {
"vscode_vibrancy.type": {
"description": "%configuration.type.description%",
"type": "string",
"default": "auto",
"enum": [
"auto",
"acrylic",
"appearance-based",
"light",
"dark",
"titlebar",
"selection",
"menu",
"popover",
"sidebar",
"medium-light",
"ultra-dark"
],
"enumDescriptions": [
"%configuration.type.auto.description%",
"%configuration.type.acrylic.description%",
"%configuration.type.appearance-based.description%",
"%configuration.type.light.description%",
"%configuration.type.dark.description%",
"%configuration.type.titlebar.description%",
"%configuration.type.selection.description%",
"%configuration.type.menu.description%",
"%configuration.type.popover.description%",
"%configuration.type.sidebar.description%",
"%configuration.type.medium-light.description%",
"%configuration.type.ultra-dark.description%"
]
},
"vscode_vibrancy.opacity": {
"description": "%configuration.opacity.description%",
"type": "number",
"default": "-1"
},
"vscode_vibrancy.theme": {
"description": "%configuration.theme.description%",
"type": "string",
"default": "default dark",
"enum": [
"Default Dark",
"Dark (Only Subbar)",
"Default Light",
"Light (Only Subbar)"
]
},
"vscode_vibrancy.imports": {
"description": "%configuration.imports.description%",
"type": "array",
"default": [
"$theme-style$"
]
}
}
}
},
"scripts": {
"build-win10": "node-gyp rebuild"
},
"dependencies": {
"fs-extra": "^9.0.1",
"mz": "^2.7.0"
},
"devDependencies": {
"node-gyp": "^7.1.2",
"node-addon-api": "^3.1.0"
}
}