-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathio-package.json
104 lines (104 loc) · 3.76 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"common": {
"name": "connected-car",
"version": "0.0.1",
"news": {
"0.0.1": {
"en": "initial release",
"de": "Erstveröffentlichung",
"ru": "Начальная версия",
"pt": "lançamento inicial",
"nl": "Eerste uitgave",
"fr": "Première version",
"it": "Versione iniziale",
"es": "Versión inicial",
"pl": "Pierwsze wydanie",
"zh-cn": "首次出版"
}
},
"title": "PSA Group Connected Car",
"titleLang": {
"en": "PSA Group Connected Car",
"de": "PSA Group Connected Car",
"ru": "Подключенный автомобиль PSA Group",
"pt": "Carro conectado do grupo PSA",
"nl": "PSA Group Connected Car",
"fr": "Voiture connectée du groupe PSA",
"it": "Auto connessa del gruppo PSA",
"es": "Coche conectado del grupo PSA",
"pl": "Połączony samochód grupy PSA",
"zh-cn": "PSA集团联网汽车"
},
"desc": {
"en": "Provides State of Charge and other Connected Car information",
"de": "Bietet Informationen zum Ladezustand und zu anderen verbundenen Fahrzeugen",
"ru": "Предоставляет информацию о состоянии зарядки и другую информацию о подключенном автомобиле",
"pt": "Fornece o estado da carga e outras informações do carro conectado",
"nl": "Biedt laadstatus en andere Connected Car-informatie",
"fr": "Fournit des informations sur l'état de charge et d'autres informations sur la voiture connectée",
"it": "Fornisce informazioni sullo stato di carica e altre informazioni sull'auto connessa",
"es": "Proporciona el estado de carga y otra información sobre el coche conectado",
"pl": "Zawiera informacje o stanie naładowania i inne informacje o połączonym samochodzie",
"zh-cn": "提供充电状态和其他联网汽车信息"
},
"authors": [
"Robert <[email protected]>"
],
"keywords": [
"Peugeout",
"Citroen",
"Vauxhall",
"Opel",
"SoC"
],
"license": "MIT",
"platform": "Javascript/Node.js",
"main": "main.js",
"icon": "connected-car.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/rseidt/ioBroker.connected-car/master/admin/connected-car.png",
"readme": "https://github.com/rseidt/ioBroker.connected-car/blob/master/README.md",
"loglevel": "info",
"mode": "daemon",
"type": "household",
"compact": true,
"materialize": true,
"dependencies": [
{
"js-controller": ">=1.4.2"
}
]
},
"native": {
"clientId": "",
"clientSecret":"",
"username" : "",
"password" : "",
"cert": "",
"key": ""
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "Device or service connected",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
}
]
}