-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.json
44 lines (44 loc) · 1.19 KB
/
library.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
{
"name": "ESPWiFiServersExtension",
"keywords": "wifi, json, rest, tcp, http, mqtt, web, telnet, async, esp8266, esp32, domoticz, mosquitto",
"description": "A C++ library allows to quickly develop applications embedding an asynchronous HTTP server and an asynchronous Domoticz MQTT client",
"authors":
{
"name": "Gérald GUIONY",
"url": "http://wpsm.free.fr"
},
"repository": {
"type": "git",
"url": "https://github.com/gerald-guiony/ESPWiFiServersExtension.git"
},
"version": "4.0",
"frameworks": "arduino",
"platforms": ["espressif8266", "espressif32"],
"dependencies": [
{
"name": "ESPCoreExtension",
"version": "4.0",
"platforms": ["espressif8266", "espressif32"],
},
{
"name": "ArduinoJson",
"version": "5.13.4",
"platforms": "*"
},
{
"name": "WiFiManager",
"version": "2.0.17",
"platforms": ["espressif8266", "espressif32"],
},
{
"name": "ESP Async WebServer",
"version": "1.2.4",
"platforms": ["espressif8266", "espressif32"],
},
{
"name": "AsyncMqttClient",
"version": "0.9.0",
"platforms": ["espressif8266", "espressif32"],
}
]
}