-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 926 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 926 Bytes
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
{
"name": "ble-midi-bridge",
"productName": "BLE-MIDI Bridge",
"version": "2.0.0",
"description": "Connect BLE-MIDI device(s) to a MIDI port.",
"author": "Maxime Jeunot",
"license": "GPL-3.0-or-later",
"private": true,
"type": "module",
"scripts": {
"start": "electron app",
"build-bridge": "rollup -c rollup.config.bridge.js",
"build-material": "rollup -c rollup.config.material.js",
"download-assets": "node scripts/assets.js",
"create-bundles": "node scripts/electron-packaging.js"
},
"devDependencies": {
"@electron/packager": "19.0.1",
"@material/web": "2.4.1",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-terser": "0.4.4",
"electron": "40.0.0",
"rollup": "4.55.1"
},
"resolutions": {
"@material/web": "patch:@material/web@npm%3A2.4.1#~/.yarn/patches/@material-web-npm-2.4.1-7767d7234e.patch"
},
"packageManager": "yarn@4.12.0"
}