-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
33 lines (33 loc) · 1.21 KB
/
package.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
{
"name": "root",
"private": true,
"devDependencies": {
"@types/webmidi": "^2.0.6",
"lerna": "^4.0.0"
},
"scripts": {
"submodules": "git submodule update --init --recursive --remote",
"clean": "lerna run clean --stream",
"build:livegain": "lerna run build --stream --scope livegain",
"build:pingpongdelay": "lerna run build --stream --scope pingpongdelay",
"build:quadrafuzz": "lerna run build --stream --scope quadrafuzz",
"build:csoundpitchshifter": "lerna run build --stream --scope csound-pitchshifter",
"build:pedalboard": "lerna run build --stream --scope pedalboard",
"build:synth101": "lerna run build --stream --scope synth101",
"build:midisequencer": "lerna run build --stream --scope wam-midi-sequencer",
"build": "yarn build:csoundpitchshifter && yarn build:pingpongdelay && yarn build:quadrafuzz && yarn build:livegain && yarn build:synth101 && yarn build:pedalboard && yarn build:midisequencer",
"start": "lerna run start --stream --scope host -- --color"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/api",
"**/sdk",
"**/sdk-parammgr",
"**/sdk-parammgr/**"
]
},
"dependencies": {}
}