-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlibrary.json
92 lines (92 loc) · 2.13 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
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
{
"name":"WebConfigServer",
"version": "2.3.2",
"description": "Arduino/ESP library with a Web Server to manage device configurations under config.json file stored in the SPIFFS and plot values into real-time dashboard for ESP8266 and ESP32",
"keywords": "http, async, async-webserver, websocket, webserver, esp8266, esp32",
"authors":
[
{
"name": "Pablo Clemente",
"maintainer": true,
"url": "https://github.com/paclema"
}
],
"repository":
{
"type": "git",
"url": "https://github.com/paclema/WebConfigServer"
},
"frameworks": "arduino",
"dependencies":
[
{
"name": "ArduinoJson",
"owner": "bblanchon",
"version": "^6"
},
{
"name": "AsyncTCP",
"owner": "me-no-dev",
"version": "^1.1.1",
"platforms": "espressif32"
},
{
"name": "ESP Async WebServer",
"owner": "me-no-dev",
"version": "https://github.com/me-no-dev/ESPAsyncWebServer",
"platforms": ["espressif8266", "espressif32"]
},
{
"name": "ESPAsyncTCP",
"owner": "me-no-dev",
"version": "^1.2.2",
"platforms": "espressif8266"
},
{
"name": "ESP8266WebServer",
"version": "^1.0",
"platforms": "espressif8266"
},
{
"name": "WebSockets",
"owner": "Links2004",
"version": "^2.3.2",
"platforms": ["espressif8266", "espressif32"]
},
{
"name": "FTP",
"owner": "dplasa",
"version": "https://github.com/dplasa/FTPClientServer",
"platforms": "*"
},
{
"name": "MQTTClient",
"owner": "paclema",
"version": "^0.3.0",
"platforms": "*"
}
],
"platforms": [
"atmelavr",
"espressif8266",
"espressif32"
],
"examples": [
{
"name": "Basic",
"base": "examples/basic",
"files": ["platformio.ini", "src/basic.ino"]
},
{
"name": "Basic_Class_with_MQTTClient",
"base": "examples/basic_class_with_MQTTClient",
"files": ["platformio.ini", "src/basic_class_with_MQTTClient.ino"]
}
],
"export": {
"exclude": [
"docs",
".github"
]
}
}