-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
47 lines (47 loc) · 975 Bytes
/
library.json
File metadata and controls
47 lines (47 loc) · 975 Bytes
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
{
"name": "ESPLifecycle",
"version": "0.1.0",
"description": "Deterministic init/deinit/reinit orchestration for ESP32 apps.",
"keywords": [
"esp32",
"arduino",
"esp-idf",
"lifecycle",
"startup",
"teardown",
"reinitialize"
],
"homepage": "https://github.com/ESPToolKit/esp-lifecycle",
"repository": {
"type": "git",
"url": "https://github.com/ESPToolKit/esp-lifecycle.git"
},
"license": "MIT",
"authors": [
{
"name": "zekageri"
}
],
"frameworks": ["arduino", "espidf"],
"platforms": ["espressif32"],
"dependencies": [
{
"name": "ESPWorker",
"version": "https://github.com/ESPToolKit/esp-worker.git"
},
{
"name": "ESPEventBus",
"version": "https://github.com/ESPToolKit/esp-eventbus.git"
},
{
"name": "ArduinoJson",
"version": ">=7.0.0"
}
],
"headers": ["ESPLifecycle.h"],
"build": {
"flags": [
"-std=gnu++20"
]
}
}