-
Notifications
You must be signed in to change notification settings - Fork 11
/
library.json
35 lines (34 loc) · 886 Bytes
/
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
{
"name": "bip39",
"keywords": "bip39, bitcoin",
"description": "This is a portable C++ implementation of BIP39. The goal of this project is to provide a BIP39 implementation with minimal dependencies and to be compatiable with the most number of platforms, including Arduino.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ciband/bip39.git"
},
"authors": {
"name": "Chris Johnson",
"url": "https://github.com/ciband/bip39"
},
"dependencies": {
},
"version": "1.1.1",
"frameworks": "arduino",
"platforms": [
"native",
"espressif32",
"espressif8266"
],
"export": {
"include": [
"src/*"
]
},
"build": {
"flags": [
"-I src/include",
"-I src/lib/PicoSHA2"
]
}
}