-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.01 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.01 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
{
"name": "modularsynth",
"version": "1.0.0",
"description": "Modular synthesizers are really cool but really expensive. This project is a hybrid software/hardware system, where the sound is created digitally by the Web Audio API in Javascript, but routing/patching between modules is done in hardware, by an Arduino-based system. While there are plenty of soft synths which can be controlled by external hardware devices (keyboard/knobs/sliders, etc), the slightly unique part of this project is being able to detect routing between modules.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattybrad/modularsynth.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattybrad/modularsynth/issues"
},
"homepage": "https://github.com/mattybrad/modularsynth#readme",
"dependencies": {
"express": "^4.15.2",
"serialport": "^4.0.7",
"ws": "^2.3.1"
}
}