-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
249 lines (248 loc) · 7.02 KB
/
Copy pathpackage.json
File metadata and controls
249 lines (248 loc) · 7.02 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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
{
"name": "vscode-github-desktop",
"displayName": "GitHub Desktop",
"description": "A comprehensive VS Code extension that brings GitHub Desktop's complete workflow experience, featuring React-based UI, advanced commit management, branch operations, and multi-account support.",
"version": "1.1.4",
"publisher": "BetaVersion",
"icon": "media/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/Satyam-2001/GitHub-Desktop"
},
"engines": {
"vscode": ">=1.84.0",
"node": ">=20.0.0"
},
"categories": [
"Other"
],
"keywords": [
"git",
"github",
"github desktop",
"source control",
"commit",
"branch",
"repository",
"multi-account",
"react"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "githubDesktop.commit.reset",
"title": "Reset to Commit",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.commit.checkout",
"title": "Checkout Commit",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.commit.revert",
"title": "Revert Commit",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.commit.createBranch",
"title": "Create Branch from Commit",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.commit.createTag",
"title": "Create Tag",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.commit.cherryPick",
"title": "Cherry-pick Commit",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.commit.copySha",
"title": "Copy SHA",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.commit.viewOnGitHub",
"title": "View on GitHub",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.signIn",
"title": "GitHub Desktop: Sign In",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.signOut",
"title": "GitHub Desktop: Sign Out",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.signOutAccount",
"title": "Sign Out",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.switchAccount",
"title": "GitHub Desktop: Switch Active Account",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.switchToAccount",
"title": "GitHub Desktop: Switch to Account",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.cloneRepository",
"title": "GitHub Desktop: Clone Repository",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.openRepository",
"title": "GitHub Desktop: Open Repository",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.createIssue",
"title": "GitHub Desktop: Create Issue",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.refreshViews",
"title": "GitHub Desktop: Refresh Views",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.addAccount",
"title": "Add GitHub Account",
"category": "GitHub Desktop",
"icon": "$(plus)"
},
{
"command": "githubDesktop.manageAccounts",
"title": "Manage GitHub Accounts",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.removeAccount",
"title": "Remove Account",
"category": "GitHub Desktop"
},
{
"command": "githubDesktop.refreshAccounts",
"title": "Refresh Accounts",
"category": "GitHub Desktop",
"icon": "$(refresh)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "githubDesktop",
"title": "GitHub Desktop",
"icon": "media/icon.svg"
}
]
},
"views": {
"githubDesktop": [
{
"id": "githubDesktop.timeline",
"name": "History",
"type": "webview",
"icon": "$(history)"
},
{
"id": "githubDesktop.accounts",
"name": "Accounts",
"icon": "$(account)",
"collapsed": true
},
{
"id": "githubDesktop.repositories",
"name": "Repositories",
"icon": "$(repo)",
"collapsed": true
}
]
},
"menus": {
"view/item/context": [
{
"command": "githubDesktop.signOutAccount",
"when": "view == githubDesktop.accounts && viewItem == githubDesktop.account"
},
{
"command": "githubDesktop.signOutAccount",
"when": "view == githubDesktop.accounts && viewItem == githubDesktop.activeAccount"
},
{
"command": "githubDesktop.removeAccount",
"when": "view == githubDesktop.accounts && viewItem == githubDesktop.account"
},
{
"command": "githubDesktop.removeAccount",
"when": "view == githubDesktop.accounts && viewItem == githubDesktop.activeAccount"
}
],
"view/title": [
{
"command": "githubDesktop.addAccount",
"when": "view == githubDesktop.accounts",
"group": "navigation@1"
},
{
"command": "githubDesktop.refreshAccounts",
"when": "view == githubDesktop.accounts",
"group": "navigation@2"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile && npm run build-webview",
"compile": "webpack --mode production",
"build-webview": "vite build --config vite.webview.config.ts",
"watch": "webpack --mode development --watch",
"watch-webview": "vite build --config vite.webview.config.ts --watch",
"dev-webview": "vite dev --config vite.webview.config.ts",
"package": "vsce package --no-dependencies --allow-missing-repository --allow-package-secrets github",
"test": "npm run compile && node ./out/test/runTest.js",
"format": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@types/node": "18.x",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/vscode": "^1.84.0",
"@vitejs/plugin-react": "^5.0.3",
"@vscode/vsce": "^3.6.0",
"rimraf": "^5.0.5",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^7.1.6",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.2",
"@mui/material": "^7.3.2",
"@octokit/auth-oauth-device": "^4.0.3",
"@octokit/rest": "^20.0.2",
"@tanstack/react-query": "^5.89.0",
"axios": "^1.12.2",
"dayjs": "^1.11.18",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"simple-git": "^3.21.0"
}
}