-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.85 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.85 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
{
"name": "@aha-develop/zendesk",
"description": "Zendesk integration extension",
"version": "3.0.1",
"author": "Aha! (support@aha.io)",
"repository": {
"type": "git",
"url": "https://github.com/aha-develop/zendesk"
},
"license": "MIT",
"ahaExtension": {
"cspSources": [
"https://*.zendesk.com"
],
"contributes": {
"importers": {
"import": {
"title": "Zendesk",
"entryPoint": "src/import.tsx"
}
},
"settings": {
"subdomain": {
"title": "Subdomain",
"description": "The subdomain for your Zendesk account, where subdomain is https://{subdomain}.zendesk.com/",
"scope": [
"account"
],
"type": "string"
}
},
"views": {
"tickets": {
"title": "Zendesk dashboard",
"entryPoint": "src/tickets.tsx",
"host": "page",
"location": {
"menu": "Work"
}
},
"ticketsPanel": {
"title": "Zendesk tickets",
"entryPoint": "src/views/ticketsPanel.tsx",
"host": "panel"
}
}
}
},
"devDependencies": {
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-react": "^7.36.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.2.1"
},
"dependencies": {
"@aha-app/react-easy-state": "^0.0.12-development",
"zod": "^4.3.6"
}
}