-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.91 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 2.91 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
{
"name": "pullgod",
"displayName": "Pullgod",
"description": "View and checkout pull requests",
"publisher": "aleclarson",
"icon": "icon.png",
"version": "1.12.0",
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Pullgod",
"properties": {
"pullgod.openInBrowserStrategy": {
"type": "string",
"default": "system",
"enum": [
"system",
"vscode"
],
"enumDescriptions": [
"Open in the system browser",
"Open in an IDE browser tab"
],
"description": "Control whether to open PRs in the system browser or an IDE browser tab."
},
"pullgod.preferredRemote": {
"type": "string",
"default": "origin",
"description": "The preferred git remote name to fetch pull requests from (e.g., 'origin', 'upstream')."
}
}
},
"commands": [
{
"command": "pullgod.viewPullRequests",
"title": "Pullgod: View Pull Requests"
},
{
"command": "pullgod.viewPullRequestsForRemote",
"title": "Pullgod: View Pull Requests for Remote..."
},
{
"command": "pullgod.openInBrowser",
"title": "Pullgod: Open PR in Browser",
"icon": "$(github)"
},
{
"command": "pullgod.copyPRSummary",
"title": "Pullgod: Copy PR Summary to Clipboard"
},
{
"command": "pullgod.updatePriorities",
"title": "Pullgod: Update PR Priorities"
},
{
"command": "pullgod.replyToPR",
"title": "Pullgod: Reply to PR"
},
{
"command": "pullgod.closePR",
"title": "Pullgod: Close PR"
}
],
"viewsContainers": {
"panel": [
{
"id": "pullgod-panel",
"title": "Pullgod",
"icon": "icon.png"
}
]
},
"views": {
"pullgod-panel": [
{
"id": "pullgod.replyView",
"name": "Reply to PR",
"type": "webview"
}
]
}
},
"scripts": {
"bundle": "tsup",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src",
"format": "prettier --write .",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.90.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@vscode/vsce": "^3.7.1",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aleclarson/vscode-pullgod"
},
"license": "MIT",
"dependencies": {
"octokit": "^5.0.5"
}
}