-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.39 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
{
"name": "win-opacity",
"displayName": "Windows opacity",
"description": "Changes opacity of Code windows on Windows using Windows API",
"version": "1.1.7",
"publisher": "skacekachna",
"author": "Jan Zípek",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.77.3"
},
"repository": {
"type": "git",
"url": "https://github.com/SkaceKamen/vscode-win-opacity.git"
},
"extensionKind": [
"ui"
],
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Win Opacity Configuration",
"properties": {
"winopacity.opacity": {
"type": "integer",
"default": 245,
"description": "Opacity value. Should be between 0 and 255, where 0 is invisible window",
"minimum": 40,
"maximum": 255
}
}
}
},
"scripts": {
"rebuild": "node-gyp build --runtime=electron --target=22.3.9 --disturl=https://electronjs.org/headers",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/node": "^6.0.40",
"@types/vscode": "^1.40.0",
"eslint": "^6.6.0",
"node-gyp": "^9.3.1"
},
"dependencies": {
"bindings": "^1.5.0",
"install": "^0.13.0",
"node-addon-api": "^3.1.0",
"ref-napi": "^3.0.2"
},
"license": "MIT"
}