-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathlibrary.json
More file actions
46 lines (46 loc) · 993 Bytes
/
library.json
File metadata and controls
46 lines (46 loc) · 993 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
{
"name": "PsychicHttp",
"version": "2.2.0",
"description": "Arduino style wrapper around ESP-IDF HTTP library. HTTP server with SSL + websockets. Works on esp32 and probably esp8266",
"keywords": "network,http,https,tcp,ssl,tls,websocket,espasyncwebserver",
"repository": {
"type": "git",
"url": "https://github.com/hoeken/PsychicHttp"
},
"authors": [
{
"name": "Zach Hoeken",
"email": "hoeken@gmail.com",
"maintainer": true
}
],
"license": "MIT",
"examples": [
{
"name": "platformio",
"base": "examples/platformio",
"files": [
"src/main.cpp"
]
}
],
"frameworks": "arduino",
"platforms": "espressif32",
"dependencies": [
{
"owner": "bblanchon",
"name": "ArduinoJson",
"version": "^7.0.4"
}
],
"export": {
"include": [
"examples/platformio",
"src",
"library.json",
"library.properties",
"LICENSE",
"README.md"
]
}
}