-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
242 lines (242 loc) · 8.69 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
236
237
238
239
240
241
242
{
"name": "github-manager",
"displayName": "GitHub Manager",
"publisher": "zardoy",
"description": "THE FASTEST way to switch between cloned GitHub repos",
"icon": "resources/icon.png",
"version": "0.0.6",
"categories": [
"Other"
],
"keywords": [
"offline",
"git",
"cloned",
"repositories",
"open"
],
"activationEvents": [
"onCommands"
],
"contributes": {
"commands": [
{
"command": "openClonedGithubRepository",
"title": "Open Cloned GitHub Repository..."
},
{
"command": "openGithubRepository",
"title": "Open GitHub Repository..."
},
{
"command": "openNonGitDirectory",
"title": "Open Non-Git Directory..."
},
{
"command": "openNonRemoteRepository",
"title": "Open Non-Remote Repository..."
},
{
"command": "openAnything",
"title": "Open Non-Git Directory Or Repository (anything)..."
},
{
"command": "openAtGithub",
"title": "Open At GitHub"
},
{
"command": "forceOpenInTheSameWindow",
"title": "Force Open in the Same Window"
},
{
"command": "forceOpenInNewWindow",
"title": "Force Open in New Window"
}
],
"configuration": {
"title": "GitHub Manager",
"properties": {
"whereToOpen": {
"type": "string",
"description": "It always reuses empty windows",
"enum": [
"newWindowIfNotEmpty",
"alwaysSameWindow",
"ask(after)",
"ask(before)"
],
"default": "newWindowIfNotEmpty"
},
"boostRecentlyOpened": {
"type": "boolean",
"description": "Boost to top repos that were recently opened. It syncs and applies to all commands.\nBut note we don't have access to VSCode's recently opened menu",
"default": true
},
"ignore.users": {
"type": "array",
"description": "From which owners don't display GitHub repos",
"items": {
"type": "string"
},
"uniqueItems": true,
"default": []
},
"ignore.dirNameRegex": {
"type": "string",
"markdownDescription": "Regexp to filter out dirs. Applies to all commands. Can be either string or regex with flags.\nExamples:\n - `test`\n - `/test/g`\n - `dir1|dir2`",
"default": ""
},
"showFolderNames": {
"type": "string",
"description": "Whether to show folder names next to repo slug when openining cloned GitHub repository",
"enum": [
"never",
"onDuplicates",
"always"
],
"enumDescriptions": [
"Never show folder names",
"Show folder names only on duplicate entries (same owner/repo)",
"Always show folder names"
],
"default": "onDuplicates"
},
"enableAuthentication": {
"type": "boolean",
"description": "Whether to enable inegration with your GitHub accout via authentication\nDisable to work with cloned repos only",
"default": true
},
"onlineRepos.showArchived": {
"type": "boolean",
"description": "Whether to show archived non-cloned repos",
"default": false
},
"onlineRepos.orderBy": {
"type": "string",
"description": "How to sort repos for remote command, other cloned repos are sorted by owner/name",
"enum": [
"CREATED_AT",
"UPDATED_AT",
"PUSHED_AT",
"NAME",
"STARGAZERS"
],
"enumDescriptions": [
"Order repositories by creation time",
"Order repositories by update time",
"Order repositories by push time",
"Order repositories by name",
"Order repositories by number of stargazers"
],
"default": "PUSHED_AT"
},
"onlineRepos.reposType": {
"type": "string",
"enum": [
"all",
"owner",
"public",
"private",
"collaborator",
"organization_member"
],
"description": "Which repository types to show",
"default": "all"
},
"onlineRepos.clonedDirFormat": {
"type": "string",
"enum": [
"repoName",
"repoOwner_repoName"
],
"description": "Format to use for cloning directory name",
"default": "repoName"
},
"lastOpenedItemsLimit": {
"type": "number",
"markdownDescription": "Has effect only when `boostRecentlyOpened` is on",
"default": 30,
"minimum": 1
},
"repoSizeThreshold": {
"type": "number",
"markdownDescription": "Size in *kilobytes* after which display warning message with suggestion to use shallow clone.\nSet to `0` to disable this feature.\nDefault is 50mb (50 * 1024)",
"default": 51200,
"minimum": 0
}
}
},
"menus": {
"commandPalette": [
{
"command": "forceOpenInTheSameWindow",
"when": "false"
},
{
"command": "forceOpenInNewWindow",
"when": "false"
}
]
}
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": true
},
"scripts": {
"start": "vscode-framework start",
"build": "vscode-framework build",
"test": "tsm test/setupFixtures.ts && jest"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "17.0.6",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/vscode": "^1.64.0",
"@vscode/test-electron": "^2.0.1",
"babel-jest": "^27.4.5",
"delay": "^5.0.0",
"esbuild": "^0.14.10",
"eslint": "^8.10.0",
"eslint-config-zardoy": "^0.2.10",
"fs-extra": "^10.0.0",
"jest": "^27.4.5",
"modify-json-file": "^1.2.2",
"ts-jest": "^27.1.2",
"tsm": "^2.2.1",
"type-fest": "^2.12.0",
"typescript": "^4.5.5",
"vscode-test": "^1.6.1"
},
"dependencies": {
"@octokit/graphql": "^4.8.0",
"@types/hosted-git-info": "^3.0.2",
"@types/ini": "^1.3.31",
"@types/url-join": "^4.0.1",
"@zardoy/tsconfig": "^1.2.2",
"@zardoy/vscode-utils": "^0.0.6",
"abortcontroller-polyfill": "^1.7.3",
"esbuild-runner": "^2.2.1",
"execa": "^5.1.1",
"filesize": "^8.0.7",
"find-up": "^6.2.0",
"github-remote-info": "^1.0.3",
"hosted-git-info": "^4.1.0",
"ini": "^2.0.0",
"lodash": "^4.17.21",
"read-pkg": "^7.1.0",
"url-join": "^4.0.1",
"valtio": "^1.3.0",
"vscode-framework": "^0.0.18"
},
"license": "MIT"
}