-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
28 lines (28 loc) · 1.02 KB
/
library.json
File metadata and controls
28 lines (28 loc) · 1.02 KB
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
{
"name": "midi2cpp",
"version": "0.4.1",
"description": "C++17 Arduino-style wrapper for MIDI 2.0 on embedded devices. Thin wrapper over the portable midi2 C99 library. Covers UMP, MIDI-CI with Appendix E, Profile, PE Subscribe/Notify, Process Inquiry, Flex Data, and Bit Scaling. Targets RP2040, RP2350, Teensy, ESP32 family, nRF52, and SAMD21.",
"keywords": "midi, midi2, usb, ump, capability-inquiry, property-exchange, profile",
"authors": [
{
"name": "Saulo Verissimo",
"email": "sauloverissimo@gmail.com",
"url": "https://github.com/sauloverissimo",
"maintainer": true
}
],
"license": "MIT",
"frameworks": ["arduino"],
"platforms": ["raspberrypi", "teensy", "espressif32", "nordicnrf52"],
"repository": {
"type": "git",
"url": "https://github.com/sauloverissimo/midi2cpp.git"
},
"dependencies": {
"sauloverissimo/midi2": "^0.4.0"
},
"headers": "midi2cpp.h",
"export": {
"exclude": ["tests/build/*", "build/*", ".github/*", ".intern/*", "scripts/*"]
}
}