-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.57 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
{
"name": "borderless",
"displayName": "VSCode Borderless",
"description": "VS Code Extension to set window to borderless on Windows platform.",
"version": "1.0.0",
"publisher": "vhanla",
"license": "MIT",
"icon": "images/borderlessicon.png",
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/vhanla/vscode-borderless.git"
},
"bugs": {
"url": "https://github.com/vhanla/vscode-borderless/issues",
"email": "[email protected]"
},
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"configuration": {
"title": "Window Borderless configuration",
"properties": {
"borderless.autoenable": {
"type": "boolean",
"default": false,
"description": "Apply borderless on startup"
},
"borderless.bordertype": {
"type": "string",
"default": "borderless",
"enum": [
"borderless",
"bordersizable",
"bordersimple"
],
"description": "Type of optional titleless window border"
}
}
},
"commands": [
{
"command": "borderless.on",
"title": "Borderless: Hide Window's Border"
},
{
"command": "borderless.off",
"title": "Borderless: Show Window's Border"
}
],
"keybindings": [
{
"command": "borderless.on",
"key": "shift+F11"
},
{
"command": "borderless.off",
"key": "shift+F12"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^1.0.0"
},
"dependencies": {
"node-powershell": "^3.1.1"
}
}