-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.49 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
{
"name": "@aha-develop/sentry",
"description": "Sentry integration",
"version": "1.1.8",
"author": "Aha! (support@aha.io)",
"scripts": {
"format": "prettier --write 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/aha-develop/sentry.git"
},
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.175",
"@types/react": "^16.8.0",
"@types/recharts": "^1.8.23",
"prettier": "^2.3.2"
},
"ahaExtension": {
"cspSources": [
"https://sentry.io",
"https://de.sentry.io"
],
"contributes": {
"importers": {
"sentryImport": {
"title": "Sentry",
"entryPoint": "src/importers/sentryImport.tsx"
}
},
"endpoints": {
"sentryIssues": {
"title": "Hook from Sentry",
"entryPoint": "src/endpoints/sentryHook.ts",
"public": true
}
},
"views": {
"sentryAttribute": {
"title": "Sentry",
"entryPoint": "src/views/sentryAttribute.tsx",
"host": "attribute",
"recordTypes": [
"Feature",
"Epic",
"Requirement"
]
}
},
"commands": {
"addLink": {
"title": "Link sentry issue to record",
"entryPoint": "src/commands/addLink.ts",
"commandType": "recordAction",
"recordTypes": [
"Feature",
"Epic",
"Requirement"
]
}
},
"settings": {
"region": {
"title": "Sentry data storage location",
"description": "Your Sentry account's data storage location (United States or European Union).",
"type": "string",
"default": "us",
"options": [
{
"label": "US",
"value": "us"
},
{
"label": "EU",
"value": "eu"
}
],
"scope": [
"account"
]
},
"team": {
"title": "Aha! webhook team",
"description": "The reference prefix of the Aha! team where features will be created from incoming Sentry webhook issues.",
"type": "string",
"scope": [
"account"
]
}
}
}
},
"dependencies": {
"@aha-app/aha-develop-react": "^1.0.6",
"axios": "^0.21.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"react": "^17.0.2",
"recharts": "^2.1.5"
}
}