-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
134 lines (134 loc) · 4.96 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
124
125
126
127
128
129
130
131
132
133
134
{
"name": "activitusbar",
"displayName": "Activitus Bar",
"description": "Save some real estate by recreating the activity bar buttons on the status bar",
"version": "0.0.47",
"icon": "icon.png",
"publisher": "Gruntfuggly",
"license": "MIT",
"keywords": [
"activity bar",
"status bar",
"task",
"tasks",
"task buttons"
],
"engines": {
"vscode": "^1.74.0"
},
"repository": "https://github.com/Gruntfuggly/activitusbar",
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension",
"extensionKind": [
"ui",
"workspace"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": "limited",
"restrictedConfigurations": [
"activitusbar.views",
"activitusbar.inactiveColour",
"activitusbar.activeColour",
"activitusbar.priority",
"activitusbar.alignment",
"activitusbar.toggleSidebar",
"activitusbar.searchViewInPanel",
"activitusbar.combineWorkspaceSettings",
"activitusbar.showSourceControlCounter"
]
}
},
"contributes": {
"configuration": {
"type": "object",
"title": "Activitus Bar",
"properties": {
"activitusbar.views": {
"type": "array",
"description": "Views to include on the status bar with associated icons",
"default": [
{
"name": "explorer",
"codicon": "explorer-view-icon"
},
{
"name": "search",
"codicon": "search-view-icon"
},
{
"name": "scm",
"codicon": "source-control-view-icon"
},
{
"name": "debug",
"codicon": "run-view-icon"
},
{
"name": "extensions",
"codicon": "extensions-view-icon"
}
]
},
"activitusbar.inactiveColour": {
"type": "string",
"description": "Override colour of inactive icons"
},
"activitusbar.activeColour": {
"type": "string",
"description": "Override colour of the active icon"
},
"activitusbar.priority": {
"type": "integer",
"description": "Controls the position within the status bar (higher values will move the icons further to the left",
"default": 99999
},
"activitusbar.alignment": {
"type": "string",
"enum": [
"Left",
"Right"
],
"default": "Left",
"description": "Position of the activitus bar section within the status bar"
},
"activitusbar.toggleSidebar": {
"type": "boolean",
"description": "Set this to false if you don't want to toggle the side bar if the same view is selected again",
"default": true
},
"activitusbar.searchViewInPanel": {
"type": "boolean",
"description": "Set this to true if you use the search view in the bottom panel instead of the side bar. Do not set this to true when the search view is in the normal location!",
"default": false
},
"activitusbar.combineWorkspaceSettings": {
"type": "boolean",
"description": "Set this to true to combine any workspace settings into the user settings instead of overwritting them",
"default": false
},
"activitusbar.showSourceControlCounter": {
"type": "boolean",
"markownDescription": "Show a count of modified files next to the Source Control view button. *Note: Some users have reported that this interferes with VSCode dialogs.*",
"default": false
}
}
}
},
"scripts": {},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.74.0",
"eslint": "^6.6.0"
},
"__metadata": {
"id": "47137038-6832-49c2-a31c-9ad3d95187fc",
"publisherId": "d4906d2e-f2ee-492d-9c7c-02b6160599ec",
"publisherDisplayName": "Gruntfuggly"
}
}