-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
200 lines (200 loc) · 7.48 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
{
"name": "vscode-dashboard",
"displayName": "Project Dashboard",
"description": "Organize your workspaces in a speed-dial manner.",
"version": "2.6.0",
"publisher": "kruemelkatze",
"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/Kruemelkatze/vscode-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"
}
],
"keybindings": [
{
"command": "dashboard.open",
"key": "ctrl+f1",
"mac": "cmd+f1"
}
],
"configuration": {
"type": "object",
"title": "Project Dashboard",
"properties": {
"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": "Project Dashboard",
"icon": "media/icon.svg",
"visibility": "visible",
"contextualTitle": "Project Dashboard"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "project-dashboard",
"title": "Project Dashboard",
"icon": "media/icon.svg"
}
]
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production && npx gulp --production",
"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": "^4.0.2",
"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": {
"dom-autoscroller": "^2.3.4",
"dragula": "^3.7.3",
"fitty": "^2.3.5"
}
}