-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathlibrary.json
53 lines (53 loc) · 1.07 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
{
"name": "PsychicHttp",
"version": "1.2.1",
"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": "[email protected]",
"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"
},
{
"owner": "plageoj",
"name" : "UrlEncode",
"version" : "^1.0.1"
}
],
"export": {
"include": [
"examples/platformio",
"src",
"library.json",
"library.properties",
"LICENSE",
"README.md"
]
}
}