-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathapp.json
76 lines (76 loc) · 1.57 KB
/
app.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"id": "com.swttt.homekit",
"version": "5.1.0",
"brandColor": "#FE9C21",
"sdk": 3,
"compatibility": ">=5.0.0",
"homeyCommunityTopicId" : 70469,
"permissions": [
"homey:manager:api"
],
"name": {
"en": "HomeyKit",
"nl": "HomeyKit"
},
"description": {
"en": "Control your Homey devices with Apple's Home app and Siri",
"nl": "Bedien je Homey apparaten met Apple's Woning app en Siri"
},
"tags": {
"en": ["homekit", "siri", "iOS"],
"nl": ["homekit", "siri", "iOS"]
},
"category": "appliances",
"author": {
"name": "Robert Klep",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/swttt/com.swttt.homekit/issues/"
},
"source": "https://github.com/swttt/com.swttt.homekit/",
"contributors": {
"developers": [{
"name": "Bas Jansen",
"email": "[email protected]"
},
{
"name": "Niek Hassink",
"email": "[email protected]"
},
{
"name": "Robert Klep",
"email": "[email protected]"
}
]
},
"contributing": {
"donate": {
"paypal": {
"username": "robertklep"
}
}
},
"images": {
"large": "./assets/images/large.png",
"small": "./assets/images/small.png"
},
"api" : {
"getDevices": {
"method": "GET",
"path": "/devices"
},
"addDevice": {
"method": "PUT",
"path": "/devices/:id"
},
"deleteDevice": {
"method": "DELETE",
"path": "/devices/:id"
},
"clearStorage": {
"method": "GET",
"path": "/clear-storage"
}
}
}