-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
105 lines (105 loc) · 2.62 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
{
"name": "glassit",
"displayName": "GlassIt-VSC",
"description": "VS Code Extension to set window to transparent on Windows and Linux platforms.",
"version": "0.2.6",
"publisher": "s-nlf-fh",
"license": "MIT",
"engines": {
"vscode": "^1.40.0"
},
"extensionKind": [
"ui"
],
"categories": [
"Themes",
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/hikarin522/GlassIt-VSC.git"
},
"badges": [
{
"url": "https://img.shields.io/visual-studio-marketplace/v/s-nlf-fh.glassit",
"description": "Version",
"href": "https://marketplace.visualstudio.com/items?itemName=s-nlf-fh.glassit"
},
{
"url": "https://img.shields.io/visual-studio-marketplace/i/s-nlf-fh.glassit",
"description": "Installs",
"href": "https://marketplace.visualstudio.com/items?itemName=s-nlf-fh.glassit"
},
{
"url": "https://img.shields.io/visual-studio-marketplace/r/s-nlf-fh.glassit",
"description": "Rating",
"href": "https://marketplace.visualstudio.com/items?itemName=s-nlf-fh.glassit"
}
],
"bugs": {
"url": "https://github.com/hikarin522/GlassIt-VSC/issues",
"email": "[email protected]"
},
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"configuration": {
"title": "GlassIt VSC configuration",
"properties": {
"glassit.alpha": {
"type": "integer",
"default": 220,
"description": "Transparency level [1-255]"
},
"glassit.step": {
"type": "integer",
"default": 5,
"description": "Increment of alpha"
},
"glassit.force_sway": {
"type": "boolean",
"default": false,
"description": "Force using swaymsg to set transparency"
}
}
},
"commands": [
{
"command": "glassit.increase",
"title": "GlassIt: Increase the transparency"
},
{
"command": "glassit.decrease",
"title": "GlassIt: Decrease the transparency"
},
{
"command": "glassit.maximize",
"title": "GlassIt: Maximize the transparency"
},
{
"command": "glassit.minimize",
"title": "GlassIt: Minimize the transparency"
}
],
"keybindings": [
{
"command": "glassit.increase",
"key": "ctrl+alt+z"
},
{
"command": "glassit.decrease",
"key": "ctrl+alt+c"
},
{
"command": "glassit.minimize",
"key": "ctrl+alt+x"
}
]
},
"scripts": {},
"dependencies": {
"node-powershell": "^4.0.0"
}
}