-
Notifications
You must be signed in to change notification settings - Fork 3
/
library.json
80 lines (80 loc) · 2.27 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
{
"name": "EmbUI",
"frameworks": "arduino",
"platforms": ["espressif32"],
"version": "4.1.1",
"keywords": "embui, arduino",
"description": "Embeded Web UI framework for ESP32 IoT prototyping",
"url": "https://github.com/vortigont/EmbUI",
"authors": [
{
"name": "Emil Muratov",
"url": "https://github.com/vortigont",
"email": "gpm@hotplug.ru",
"maintainer": true
},
{
"name": "Anton Zolotarev",
"url": "https://github.com/anton-zolotarev"
},
{
"name": "Dmytro Korniienko",
"url": "https://github.com/DmytroKorniienko"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vortigont/EmbUI.git"
},
"dependencies":
[
{"owner": "bblanchon",
"name": "ArduinoJson",
"version": "~7.2"},
{"owner": "mathieucarbou",
"name": "ESPAsyncWebServer",
"version": "~3.4"},
{"owner": "bblanchon",
"name": "StreamUtils",
"version": "https://github.com/bblanchon/ArduinoStreamUtils"},
{"owner": "marvinroger",
"name": "AsyncMqttClient",
"version": "~0.9"},
{"owner": "arkhipenko",
"name": "TaskScheduler",
"version": "~3.7"},
{"owner": "vortigont",
"name": "FTPClientServer",
"version": "https://github.com/vortigont/FTPClientServer#feat"},
{"owner": "vortigont",
"name": "esp32-flashz",
"version": "~1.1",
"platforms": ["espressif32"]},
{"owner": "vortigont",
"name": "ESP32-DNSServerAsync",
"version": "https://github.com/vortigont/ESP32-DNSServerAsync",
"platforms": ["espressif32"]}
],
"build": {
"srcDir": "src",
"libLDFMode": "chain",
"libCompatMode": "strict",
"flags": "-std=gnu++17",
"unflags": "-std=gnu++11"
},
"headers": ["EmbUI.h", "basicui.h", "ts.h", "ui.h"],
"export": {
"include": [
"src/*",
"examples/*",
"*.md",
"*.json",
"LICENSE",
"resources/*"
],
"exclude": [
"*/*.tmp"
]
}
}