-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
63 lines (63 loc) · 1.47 KB
/
library.json
File metadata and controls
63 lines (63 loc) · 1.47 KB
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
{
"name": "ESP32 Configuration Manager",
"version": "4.0.0",
"keywords": "esp32, configuration, wifi, web-server, ota, iot, automation",
"description": "Robust configuration management system with web interface for ESP32 and ota support.",
"repository": {
"type": "git",
"url": "https://github.com/vitalyruhl/ConfigurationsManager.git"
},
"authors": [
{
"name": "Vitaly Ruhl",
"email": "info@vitaly-ruhl.de"
}
],
"frameworks": "arduino",
"platforms": "espressif32",
"export": {
"include": [
"src/**",
"tools/*",
"docs/*",
"examples/*",
"webui/index.html",
"webui/vite.config.mjs",
"webui/package.json",
"webui/package-lock.json",
"webui/dist",
"webui/src/*",
"webui/public/*",
"webui/*.json",
"README.md",
"library.json",
"webui/logo.svg",
"webui/db.json",
"webui/db.live.json",
"webui/README.md",
"webui/runtime_meta_min.json"
],
"exclude": [
".pio",
".pio/**",
"**/.pio",
"**/.pio/**",
"**/.pioenvs",
"**/.pioenvs/**",
"**/.piolibdeps",
"**/.piolibdeps/**",
"webui/node_modules",
"src/main.cpp",
"**/secret/secrets.h",
"**/secret/wifiSecret.h",
".vscode",
".idea",
"*.code-workspace"
]
},
"dependencies": [
"bblanchon/ArduinoJson@~7.4.1",
"esphome/ESPAsyncWebServer-esphome@~3.2.2",
"esphome/AsyncTCP-esphome@2.1.4"
]
}