-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlibrary.json
84 lines (82 loc) · 2.24 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
{
"name": "uniot-core",
"description": "Uniot is a comprehensive IoT platform framework designed to enable seamless automation, edge device networking, and task scheduling. With its native task scheduler and integrated Lisp interpreter, Uniot provides a robust, flexible environment for building connected applications.",
"keywords": "iot,m2m,automation,async,wifi,app,cloud,web,control,edge-computing",
"authors": {
"name": "Uniot Labs",
"url": "https://github.com/uniot-io",
"maintainer": true
},
"repository": {
"type": "git",
"url": "https://github.com/uniot-io/uniot-core.git"
},
"export": {
"exclude": [
"src",
"test"
]
},
"build": {
"flags": [
"-I lib/Uniot",
"-I lib/Core",
"-I lib/AppKit",
"-I lib/WebPages",
"-I lib/Core/EventBus",
"-I lib/Core/Scheduler",
"-I lib/Core/Network",
"-I lib/Core/Storage",
"-I lib/Core/Utils",
"-I lib/Core/CBORWrapper",
"-I lib/Core/LispWrapper",
"-I lib/Core/MQTTWrapper",
"-I lib/Core/Register",
"-I lib/Core/Hardware",
"-I lib/Core/Date"
],
"srcDir": ".",
"srcFilter": [
"+<lib/Uniot/*>",
"+<lib/Core/*>",
"+<lib/AppKit/*>",
"+<lib/WebPages/*>",
"+<lib/Core/EventBus/*>",
"+<lib/Core/Scheduler/*>",
"+<lib/Core/Network/*>",
"+<lib/Core/Storage/*>",
"+<lib/Core/Utils/*>",
"+<lib/Core/CBORWrapper/*>",
"+<lib/Core/LispWrapper/*>",
"+<lib/Core/MQTTWrapper/*>",
"+<lib/Core/Register/*>",
"+<lib/Core/Hardware/*>",
"+<lib/Core/Date/*>"
]
},
"dependencies": [{
"name": "uniot-cbor",
"version": "https://github.com/uniot-io/uniot-cbor.git#0.2.4"
},
{
"name": "uniot-lisp",
"version": "https://github.com/uniot-io/uniot-lisp.git#0.2.3"
},
{
"name": "uniot-pubsubclient",
"version": "https://github.com/uniot-io/uniot-pubsubclient.git#0.2.8"
},
{
"name": "uniot-crypto",
"version": "https://github.com/uniot-io/uniot-crypto.git#0.2.1"
}
],
"homepage": "https://uniot.io",
"version": "0.7.2",
"license": "GPL-3.0",
"frameworks": "arduino",
"platforms": [
"espressif8266",
"espressif32"
]
}