-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
235 lines (235 loc) · 8.64 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
{
"name": "vsc-project-dashboard-window-fork",
"displayName": "Projects Dashboard (Fork)",
"description": "Organize your workspaces in a speed-dial manner.",
"version": "2.8.3",
"publisher": "iblea",
"icon": "media/extension_icon.png",
"engines": {
"vscode": "^1.51.0"
},
"extensionKind": [
"ui",
"workspace"
],
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./dist/dashboard",
"repository": {
"type": "git",
"url": "https://github.com/iblea/vscode-project-dashboard.git"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"commands": [
{
"command": "dashboard.open",
"title": "Project Dashboard: Open"
},
{
"command": "dashboard.addGroup",
"title": "Project Dashboard: Add Group"
},
{
"command": "dashboard.removeGroup",
"title": "Project Dashboard: Remove Group"
},
{
"command": "dashboard.addProject",
"title": "Project Dashboard: Add Project"
},
{
"command": "dashboard.removeProject",
"title": "Project Dashboard: Remove Project"
},
{
"command": "dashboard.editProjects",
"title": "Project Dashboard: Edit Projects"
},
{
"command": "dashboard.addProjectsFromFolder",
"title": "Project Dashboard: Add Projects from Folder"
},
{
"command": "dashboard.openProjectNewWindow",
"title": "Project Dashboard: Open Project in New Window"
},
{
"command": "dashboard.openProjectCurrentWindow",
"title": "Project Dashboard: Open Project in Current Window"
}
],
"keybindings": [
{
"command": "dashboard.open",
"key": "ctrl+f1",
"mac": "cmd+f1"
}
],
"configuration": {
"type": "object",
"title": "Project Dashboard",
"properties": {
"dashboard.windowColors.🌈 Theme": {
"type": "string",
"default": "dark",
"enum": [
"dark",
"light",
"remove"
],
"enumDescriptions": [
"Applies a dark-themed color to the activityBar and titleBar. First 'remove' and reload VSCode for changes to take effect. ",
"Applies a light-themed color to the activityBar and titleBar. First 'remove' and reload VSCode for changes to take effect. ",
"Removes the modified color settings from .vscode/settings.json"
],
"description": "Controls the color shades to blend with dark or light themes. To switch betwen light and dark, you must first select 'remove' and reload VSCode to remove the settings, because they are not automatically overwritten. This lets you modify the selected colors if you don't like what the extension picks. \n\nReload the window for this to take effect (cmd-⇧-P, 'Reload Window')"
},
"dashboard.windowColors.🌈 DeleteSettingsFileUponExit": {
"type": "boolean",
"default": false,
"description": "Delete .vscode/settings.json each time you close the workspace/window. This prevents this file from being saved even when you haven't manually edited it. This setting is necessary in situations where VSCode needelessly copies global settings to this workspace settings file. \n\n🚨 This will delete any workspace customizations you might have saved, including a Base Color.\n\nThis should be set in 'User Settings' instead of 'Workspace Settings' or else it will just delete itself."
},
"dashboard.windowColors.🌈 BaseColor": {
"type": "string",
"description": "Html color name or hex color value (eg 'whitesmoke' or '#ffffff').\n\nhttps://www.w3schools.com/colors/colors_names.asp\n\nReload the window for this to take effect (cmd-shift-p, 'Reload Window')\n\nTo remove a Base Color, you'll have to delete the relevant settings in .vscode/settings.json either manually or by selecting 'Delete Settings File Upon Exit'."
},
"dashboard.projectData": {
"type": [
"array",
"null"
],
"markdownDescription": "Stores the dashboard data if the ```dashboard.storeProjectsInSettings``` option is set to ```true```. The raw data can be edited by using the command ```Dashboard: Edit Projects```.",
"default": null
},
"dashboard.searchIsActiveByDefault": {
"type": "boolean",
"default": true
},
"dashboard.customCss": {
"type": "string",
"markdownDescription": "Custom CSS rules to be injected into the dashboard can be placed here. Note that this will not be sanitized!",
"default": null
},
"dashboard.recentColors": {
"type": "array",
"markdownDescription": "Stores the recently used colors if the ```dashboard.storeProjectsInSettings``` option is set to ```true```.",
"default": null
},
"dashboard.storeProjectsInSettings": {
"type": "boolean",
"default": false,
"markdownDescription": "If set to ```true```, the dashboard data is saved in the user settings and can be synced using the ```Settings Sync``` extension to multiple devices. NOTE: This disables the possibility of having varying dashboard data on these devices. **(VSCode restart required)**"
},
"dashboard.displayProjectPath": {
"type": "boolean",
"default": true
},
"dashboard.prependVscodeUrlToWslRemotes": {
"type": "boolean",
"default": true
},
"dashboard.projectTileWidth": {
"description": "In px, default: 350",
"type": "number",
"default": 350
},
"dashboard.recentColorsToRemember": {
"type": "number",
"default": 15
},
"dashboard.openOnStartup": {
"type": "string",
"default": "empty workspace",
"markdownDescription": "Note: The ```empty workspace``` option takes only effect if [Workbench: Startup Editor](#workbench.startupEditor) is to ```none``` or a ```welcomePage``` option.",
"enum": [
"always",
"empty workspace",
"never"
]
},
"dashboard.showAddGroupButtonTile": {
"type": "boolean",
"markdownDescription": "If set to ```false```, the '+ New Group' tile is hidden. Groups can be added by using the Command Palette (default ```F1```) with 'dashboard: Add Group' action. The dashboard needs to be refreshed for the changes to take effect.",
"default": true
},
"dashboard.showAddProjectButtonTile": {
"type": "boolean",
"markdownDescription": "If set to ```false```, the dedicated '+' tile is hidden inside groups. Projects can be added by using the actions when hovering the group name. The dashboard needs to be refreshed for the changes to take effect.",
"default": true
},
"dashboard.customProjectCardBackground": {
"type": "string",
"default": null
},
"dashboard.customProjectNameColor": {
"type": "string",
"default": null
},
"dashboard.customProjectPathColor": {
"type": "string",
"default": null
}
}
},
"views": {
"project-dashboard": [
{
"type": "webview",
"id": "projectDashboard.dashboard",
"name": "Projects",
"icon": "media/icon.svg",
"visibility": "visible",
"contextualTitle": "Project Dashboard"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "project-dashboard",
"title": "Projects",
"icon": "media/icon.svg"
}
]
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production && npx gulp --production",
"vscode:package": "vsce package",
"vscode:publish": "vsce publish",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"lint": "tslint -p ./"
},
"devDependencies": {
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.8",
"@types/vscode": "^1.51.0",
"gulp": "^5.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-mode": "^1.1.0",
"gulp-sass": "^5.0.0",
"sass": "^1.56.0",
"ts-loader": "^6.2.2",
"tslint": "^6.1.3",
"typescript": "^4.0.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"color": "^4.2.3",
"dom-autoscroller": "^2.3.4",
"dragula": "^3.7.3",
"fitty": "^2.3.5"
}
}