-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 4.04 KB
/
Copy pathpackage.json
File metadata and controls
151 lines (151 loc) · 4.04 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
{
"name": "github-webhook-manager",
"displayName": "GitHub Webhook Manager",
"description": "View and redeliver GitHub repository webhook deliveries without leaving VS Code",
"version": "1.1.0",
"publisher": "seiya-koji",
"repository": {
"type": "git",
"url": "https://github.com/seiya-koji/github-webhook-manager.git"
},
"engines": {
"vscode": "^1.85.0"
},
"icon": "resources/icon.png",
"license": "MIT",
"categories": [
"Other"
],
"keywords": [
"github",
"webhook",
"redeliver",
"deliveries"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "githubWebhooks",
"title": "GitHub Webhooks",
"icon": "resources/webhook.svg"
}
]
},
"views": {
"githubWebhooks": [
{
"id": "githubWebhooks.deliveries",
"name": "Webhooks",
"icon": "resources/webhook.svg",
"contextualTitle": "GitHub Webhooks"
}
]
},
"commands": [
{
"command": "githubWebhooks.refresh",
"title": "Refresh",
"category": "GitHub Webhooks",
"icon": "$(refresh)"
},
{
"command": "githubWebhooks.showDelivery",
"title": "Show Delivery Details",
"category": "GitHub Webhooks",
"icon": "$(open-preview)"
},
{
"command": "githubWebhooks.redeliver",
"title": "Redeliver",
"category": "GitHub Webhooks",
"icon": "$(history)"
},
{
"command": "githubWebhooks.openWebhookSettings",
"title": "Open Webhook Settings on GitHub",
"category": "GitHub Webhooks",
"icon": "$(gear)"
},
{
"command": "githubWebhooks.openRepoWebhooks",
"title": "Open Repository Webhooks Page on GitHub",
"category": "GitHub Webhooks",
"icon": "$(github-inverted)"
}
],
"menus": {
"view/title": [
{
"command": "githubWebhooks.refresh",
"when": "view == githubWebhooks.deliveries",
"group": "navigation@1"
},
{
"command": "githubWebhooks.openRepoWebhooks",
"when": "view == githubWebhooks.deliveries",
"group": "navigation@2"
}
],
"view/item/context": [
{
"command": "githubWebhooks.redeliver",
"when": "view == githubWebhooks.deliveries && viewItem == delivery",
"group": "inline"
},
{
"command": "githubWebhooks.showDelivery",
"when": "view == githubWebhooks.deliveries && viewItem == delivery",
"group": "1_actions"
},
{
"command": "githubWebhooks.openWebhookSettings",
"when": "view == githubWebhooks.deliveries && viewItem == webhook",
"group": "inline"
}
],
"commandPalette": [
{
"command": "githubWebhooks.openWebhookSettings",
"when": "false"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run check-types && node esbuild.js --production",
"compile": "node esbuild.js",
"watch": "node esbuild.js --watch",
"check-types": "tsc --noEmit",
"package": "vsce package --no-dependencies",
"prepare": "husky",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@octokit/rest": "^21.1.1"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@eslint/js": "^10.0.1",
"@types/node": "^20",
"@types/vscode": "^1.85.0",
"@vitest/coverage-v8": "^4.1.9",
"@vscode/vsce": "^3.0.0",
"esbuild": "^0.25.0",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"prettier": "^3.8.4",
"typescript": "^5.3",
"typescript-eslint": "^8.61.1",
"vitest": "^4.1.9"
}
}