-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
230 lines (230 loc) · 6.44 KB
/
package.json
File metadata and controls
230 lines (230 loc) · 6.44 KB
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
{
"name": "awesome-projects",
"displayName": "Awesome Projects",
"description": "Manage and organize your VS Code projects with ease. Quick access to project URLs, custom colors, and project shortcuts.",
"version": "0.20.0",
"publisher": "MathiasElle",
"icon": "resources/logo.png",
"license": "GNU General Public License v3.0",
"bugs": {
"url": "https://github.com/dermatz/vscode-ext-awesome-projects/issues"
},
"homepage": "https://github.com/dermatz/vscode-ext-awesome-projects#readme",
"repository": {
"type": "git",
"url": "https://github.com/dermatz/vscode-ext-awesome-projects"
},
"sponsor": {
"url": "https://github.com/sponsors/dermatz"
},
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Other"
],
"keywords": [
"project",
"manager",
"workspace",
"favorites",
"bookmarks",
"organization",
"productivity",
"project management",
"url",
"development",
"staging",
"production",
"environment",
"VS Code",
"extension",
"projects",
"quick access",
"custom colors",
"shortcuts",
"project URLs",
"file manager",
"webview",
"activity bar"
],
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "awesome-projects.addProject",
"title": "Add Project",
"icon": "$(add)"
},
{
"command": "awesome-projects.openProject",
"title": "Open Project"
},
{
"command": "awesome-projects.refreshProjects",
"title": "Refresh Projects",
"icon": "$(refresh)"
},
{
"command": "awesome-projects.showInFileManager",
"title": "Show in File Manager",
"category": "Awesome Projects",
"icon": "$(folder-opened)"
}
],
"menus": {
"view/item/context": [
{
"command": "awesome-projects.openProject",
"when": "view == awesomeProjectsView",
"group": "navigation"
},
{
"command": "awesome-projects.showInFileManager",
"when": "view == awesomeProjectsView",
"group": "navigation"
}
],
"view/title": [
{
"command": "awesome-projects.addProject",
"when": "view == awesomeProjectsView",
"group": "navigation"
},
{
"command": "awesome-projects.refreshProjects",
"when": "view == awesomeProjectsView",
"group": "navigation"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "awesomeProjects",
"title": "Awesome Projects",
"icon": "resources/icon-sidebar.svg"
}
]
},
"views": {
"awesomeProjects": [
{
"type": "webview",
"id": "awesomeProjectsView",
"name": "Projects",
"icon": "resources/icon-sidebar.svg",
"contextualTitle": "Awesome Projects"
}
]
},
"configuration": {
"title": "Awesome Projects",
"properties": {
"awesomeProjects.projects": {
"type": "array",
"default": [],
"description": "List of saved projects",
"items": {
"type": "object",
"required": [
"path",
"name"
],
"properties": {
"path": {
"type": "string",
"description": "Path to the project"
},
"name": {
"type": "string",
"description": "Display name of the project"
},
"color": {
"type": "string",
"description": "Custom color for the project"
},
"productionUrl": {
"type": "string",
"description": "Production URL of the project"
},
"stagingUrl": {
"type": "string",
"description": "Staging URL of the project"
},
"devUrl": {
"type": "string",
"description": "Development URL of the project"
},
"managementUrl": {
"type": "string",
"description": "Management URL of the project"
}
}
}
},
"awesomeProjects.useFavicons": {
"type": "boolean",
"default": true,
"description": "Use Google's favicon service to fetch project icons if production url is provided"
},
"awesomeProjects.showButtonsOnHover": {
"type": "boolean",
"default": true,
"description": "Show action buttons (Open, New Window, Workspace) when hovering over a project"
},
"awesomeProjects.groupSortOrder": {
"type": "string",
"default": "alphabetical",
"enum": [
"alphabetical",
"alphabetical-desc",
"manual"
],
"enumDescriptions": [
"Sort groups alphabetically (A–Z)",
"Sort groups reverse alphabetically (Z–A)",
"Keep groups in the order they appear in the project list"
],
"description": "Controls the sort order of project groups in the sidebar"
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production --devtool hidden-source-map && npm run copy-resources",
"compile": "webpack",
"cleanup": "rm -rf dist out",
"watch": "webpack --watch",
"package": "vsce package",
"publish": "npm run compile && vsce publish",
"copy-resources": "mkdir -p dist/css && cp -r src/css/* dist/css/",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"overrides": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.4"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.4.1",
"copy-webpack-plugin": "^14.0.0",
"eslint": "^9.16.0",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.105.0",
"webpack-cli": "^5.1.4"
}
}