-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
188 lines (188 loc) · 5.11 KB
/
package.json
File metadata and controls
188 lines (188 loc) · 5.11 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
{
"name": "@aha-develop/github",
"description": "GitHub",
"version": "2.3.0",
"author": "Aha! (support@aha.io)",
"repository": {
"type": "git",
"url": "https://github.com/aha-develop/github"
},
"dependencies": {
"@aha-app/aha-develop-react": "^1.0.0",
"@octokit/graphql": "^5.0.0",
"@octokit/graphql-schema": "^13.6.0",
"@octokit/webhooks-types": "^6.3.2",
"gql-tag": "^1.0.1",
"prettier": "^2.6.2",
"react-popper": "^2.3.0",
"@popperjs/core": "^2.11.8"
},
"license": "MIT",
"ahaExtension": {
"cspSources": [
"https://api.github.com",
"https://avatars.githubusercontent.com"
],
"contributes": {
"settings": {
"repos": {
"title": "Related repositories",
"scope": [
"account"
],
"type": "string",
"array": true,
"description": "List of the GitHub repositories that should be searched for related pull requests. e.g. 'rails/rails'."
},
"useEnterprise": {
"title": "Use GitHub Enterprise Server",
"scope": [
"account"
],
"type": "boolean",
"default": false,
"description": "Enable to connect to GitHub Enterprise Server instead of GitHub.com"
},
"serverUrl": {
"title": "GitHub server URL",
"scope": [
"account"
],
"type": "string",
"description": "The base URL of your GitHub instance. Leave blank for github.com."
},
"oauthClientId": {
"title": "Client ID",
"scope": [
"account"
],
"type": "string",
"description": "The Client ID is found in the details of the OAuth App in your GitHub Enterprise account. "
},
"oauthClientSecret": {
"title": "Client Secret",
"scope": [
"account"
],
"type": "secret",
"description": "The Client Secret is found in the details of the OAuth App in your GitHub Enterprise account. "
}
},
"views": {
"links": {
"title": "GitHub",
"host": "attribute",
"entryPoint": "src/views/attribute.tsx",
"recordTypes": [
"Feature",
"Epic",
"Requirement"
]
},
"prs": {
"title": "My Pull Requests",
"host": "page",
"entryPoint": "src/views/prsPage.tsx",
"location": {
"menu": "Work"
}
},
"prPanel": {
"title": "GitHub pull requests",
"entryPoint": "src/views/prPanel.tsx",
"host": "panel"
},
"githubActionsAttribute": {
"title": "GitHub Actions",
"entryPoint": "src/views/actions.tsx",
"host": "attribute",
"recordTypes": [
"Feature",
"Requirement",
"Epic"
]
}
},
"commands": {
"sync": {
"title": "Sync pull requests",
"entryPoint": "src/commands/sync.ts",
"commandType": "recordAction",
"recordTypes": [
"Epic",
"Feature",
"Requirement"
]
},
"addLink": {
"title": "Link pull request to record",
"entryPoint": "src/commands/addLink.ts",
"commandType": "recordAction",
"recordTypes": [
"Epic",
"Feature",
"Requirement"
]
},
"removeLinks": {
"title": "Remove linked pull requests from record",
"entryPoint": "src/commands/removeLinks.ts",
"commandType": "recordAction",
"recordTypes": [
"Epic",
"Feature",
"Requirement"
]
}
},
"endpoints": {
"webhook": {
"title": "Webhook from GitHub",
"entryPoint": "src/webhooks/webhook.ts",
"public": true
}
},
"automationTriggers": {
"draftPrOpened": {
"title": "Draft PR opened"
},
"prOpened": {
"title": "PR opened"
},
"prMerged": {
"title": "PR merged"
},
"prClosed": {
"title": "PR closed"
},
"prReopened": {
"title": "PR Re-opened"
},
"prApproved": {
"title": "PR approved"
},
"prChangesRequested": {
"title": "PR changes requested"
}
}
}
},
"devDependencies": {
"@graphql-codegen/cli": "3.2.1",
"@graphql-codegen/typed-document-node": "^3.0.1",
"@graphql-codegen/typescript": "3.0.1",
"@graphql-codegen/typescript-document-nodes": "3.0.1",
"@graphql-codegen/typescript-operations": "^3.0.1",
"@graphql-codegen/typescript-react-query": "^4.1.0",
"@types/inflected": "^1.1.29",
"@types/jest": "^28.1.8",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"typescript": "^4.7.4"
},
"scripts": {
"codegen": "graphql-codegen --config codegen.ts"
}
}