-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
108 lines (108 loc) · 3.9 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
{
"name": "vscode-autohide",
"displayName": "Auto Hide",
"description": "A tool to autohide the sidebar and terminal panel.",
"version": "1.0.10",
"publisher": "sirmspencer",
"repository": {
"url": "https://github.com/sirmspencer/vscode-autohide"
},
"icon": "Images/Icons/Logo_128.png",
"engines": {
"vscode": "^1.43.0"
},
"extensionKind": [
"ui",
"workspace"
],
"categories": [
"Other"
],
"keywords": [
"terminal",
"panel",
"side",
"bar",
"hide",
"auto",
"sidebar"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Auto Hide configuration",
"properties": {
"autoHide.autoHideSideBar": {
"type": "boolean",
"default": true,
"description": "Hide the side bar when the user clicks into a text editor."
},
"autoHide.autoHideAuxiliaryBar": {
"type": "boolean",
"default": true,
"description": "Hide the auxiliary bar (second side bar) when the user clicks into a text editor."
},
"autoHide.autoHidePanel": {
"type": "boolean",
"default": true,
"description": "Hide the panel (output, terminal, etc.) when the user clicks into a text editor."
},
"autoHide.autoHideReferences": {
"type": "boolean",
"default": true,
"description": "Hide the References panel (`Go to References`) when the user clicks into a text editor."
},
"autoHide.sideBarDelay": {
"type": "number",
"default": 450,
"description": "How long to wait before hiding the side bar. A delay prevents text from being selected. A longer delay allows the horizontal scroll to adjust to the change in selection before the side bar hiding causes the horizontal scroll to adjust, avoiding conflicts."
},
"autoHide.panelDelay": {
"type": "number",
"default": 300,
"description": "How long to wait before hiding the panel. Same as for the side bar when the panel is on the side. If the panel is on the bottom, there is no need for delay."
},
"autoHide.hideOnOpen": {
"type": "boolean",
"default": false,
"description": "Hide side bar and panel when VSCode first opens."
}
}
},
"commands": [
{
"command": "autoHide.toggleHideSideBar",
"category": "Auto Hide",
"title": "Toggle Auto Hide Side Bar for Current Workspace"
},
{
"command": "autoHide.toggleHideAuxiliaryBar",
"category": "Auto Hide",
"title": "Toggle Auto Hide Auxiliary Bar for Current Workspace"
},
{
"command": "autoHide.toggleHidePanel",
"category": "Auto Hide",
"title": "Toggle Auto Hide Panel for Current Workspace"
}
]
},
"scripts": {
"compile": "tsc -watch -p ./",
"#test": "node ./node_modules/vscode/bin/test",
"vscode:prepublish": "tsc -p ./",
"#postinstall": "node ./node_modules/vscode/bin/install",
"publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"mocha": "^7.2.0",
"typescript": "^2.9.2",
"vscode": "^1.1.36"
}
}