-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
54 lines (54 loc) · 1.55 KB
/
manifest.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"author": "Philippe Coval",
"description": "ActivityPub/Mastodon adapter for WebThings Gateway",
"gateway_specific_settings": {
"webthings": {
"exec": "{nodeLoader} {path}",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/rzr/mastodon-lite",
"id": "activitypub-adapter",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "ActivityPub",
"options": {
"default": {
"access_token": "TODO: replace with token from ${instance}/settings/applications",
"api": "/api/v1",
"hostname": "mastodon.social",
"port": 443,
"rejectUnauthorized": false
},
"schema": {
"description": "Configuration of ActivityPub account",
"properties": {
"access_token": {
"description": "App token to user server API (private)",
"type": "string"
},
"api": {
"description": "API of instance (eg: /api/v1)",
"type": "string"
},
"hostname": {
"description": "hostname of ActivityPub server (eg: mastodon.social)",
"type": "string"
},
"port": {
"description": "instance's port (eg: 443)",
"type": "number"
},
"rejectUnauthorized": {
"description": "Reject if not verified by Cerfificate Authority (eg: false)",
"type": "boolean"
}
},
"type": "object"
}
},
"short_name": "ActivityPub",
"version": "0.0.23"
}