This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 113
/
library.json
104 lines (104 loc) · 2.67 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
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "ESP8266 IoT Framework",
"version": "1.12.0",
"description": "Framework for IoT projects implementing HTTPS requests, a React web interface, WiFi manager, configuration manager, file manager and OTA updates.",
"keywords": "esp8266,react,ota-updates,wifi-manager,https,file-manager",
"frameworks": "arduino",
"platforms": "espressif8266",
"repository": {
"type": "git",
"url": "https://github.com/maakbaas/esp8266-iot-framework.git"
},
"dependencies":
[
{
"name": "ESPAsyncWebServer",
"version": "https://github.com/lorol/ESPAsyncWebServer"
},
{
"name": "ArduinoJson"
},
{
"name": "ESP8266WiFi"
},
{
"name": "ESP8266HTTPClient"
},
{
"name": "DNSServer"
},
{
"name": "EEPROM"
},
{
"name": "LittleFS(esp8266)"
}
],
"build": {
"extraScript": "scripts/preBuild.py",
"libArchive": false
},
"examples": [
{
"name": "helloWorld",
"base": "examples/helloWorld",
"files": [
"helloWorld.cpp"
]
},
{
"name": "fetch",
"base": "examples/fetch",
"files": [
"fetchExample.cpp"
]
},
{
"name": "configManager",
"base": "examples/configManager",
"files": [
"configManagerExample.cpp"
]
},
{
"name": "timeSync",
"base": "examples/timeSync",
"files": [
"timeSyncExample.cpp"
]
},
{
"name": "dashboard",
"base": "examples/dashboard",
"files": [
"dashboardExample.cpp"
]
}
],
"export": {
"exclude": [
"node_modules",
".vscode",
"scripts/__pycache__"
],
"include": [
"*",
".*",
"*.*",
".*.*",
"src/*.*",
"src/generated/*.*",
"scripts/*.*",
"gui/*.*",
"gui/js/*.*",
"gui/js/comp/*.*",
"gui/js/functions/*.*",
"gui/js/lang/*.*",
"examples/configManager/*.*",
"examples/fetch/*.*",
"examples/helloWorld/*.*",
"examples/timeSync/*.*",
"examples/dashboard/*.*"
]
}
}