forked from ioBroker/ioBroker.hass
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathio-package.json
84 lines (83 loc) · 2.61 KB
/
io-package.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
77
78
79
80
81
82
83
84
{
"common": {
"name": "hass",
"version": "0.1.0",
"title": "Home Assistant",
"desc": {
"en": "Home Assistant connection for ioBroker",
"de": "Home Assistant Verbindung für ioBroker",
"ru": "Подключение Home Assistant для ioBroker",
"pt": "Conexão do Home Assistant para ioBroker",
"nl": "Home Assistant-verbinding voor ioBroker",
"fr": "Connexion Home Assistant pour ioBroker",
"it": "Connessione Home Assistant per ioBroker",
"es": "Conexión de Home Assistant para ioBroker",
"pl": "Połączenie Home Assistant dla ioBroker"
},
"news": {
"0.1.0" : {
"en": "initial version",
"de": "erste Version",
"ru": "Первоначальная версия",
"pt": "versão inicial",
"nl": "eerste versie",
"fr": "version initiale",
"it": "versione iniziale",
"es": "versión inicial",
"pl": "początkowa wersja"
}
},
"localLink": "http://%host%:8123",
"platform": "Javascript/Node.js",
"mode": "daemon",
"icon": "hass.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/ioBroker/ioBroker.hass/master/admin/hass.png",
"keywords": ["HASS", "Home", "assistant"],
"readme": "https://github.com/ioBroker/ioBroker.hass/blob/master/README.md",
"loglevel": "info",
"type": "iot-systems",
"authors": [
"bluefox <[email protected]>"
]
},
"native": {
"host": "127.0.0.1",
"port": 8123,
"password": "",
"secure": false
},
"objects": [
],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "If connected to HASS server",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
},
{
"_id": "entities",
"type": "channel",
"common": {
"name": "HASS entities"
},
"native": {}
}
]
}