forked from PostHog/posthog-avo-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
33 lines (33 loc) · 845 Bytes
/
plugin.json
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
{
"name": "Avo Inspector Plugin",
"url": "https://github.com/posthog/posthog-avo-plugin",
"description": "Export PostHog events to Avo inspector.",
"main": "index.ts",
"posthogVersion": ">= 1.24.0",
"config": [
{
"key": "avoApiKey",
"hint": "",
"name": "Avo API Key",
"type": "string",
"default": "",
"required": true
},
{
"key": "environment",
"hint": "",
"name": "Environment",
"type": "string",
"default": "dev",
"required": false
},
{
"key": "appName",
"hint": "",
"name": "App name",
"type": "string",
"default": "PostHog",
"required": false
}
]
}