forked from midi2-dev/MIDI2.0Workbench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.64 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.64 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "midi2_workbench_public",
"version": "1.6.0p",
"description": "The MIDI 2.0 Workbench is a free tool from MIDI Association Members to help developers develop, debug (and deploy) MIDI 2.0 Applications and Devices. It runs on Windows, Mac and Linux. The Workbench connects to your device or software, to test various MIDI 2.0 implementation features against the currently released specifications.",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"startInitiator": "electron . --noVirtualMidi --configDir=\"/home/andrew/MidiWorkBenchInit\" ",
"pack": "electron-builder --dir ",
"build": "electron-builder --publish=never",
"postinstall": "electron-builder install-app-deps",
"icons": "electron-icon-builder -f --input=icon.png --output=build"
},
"author": "Andrew Mee <andrew@mipex.io>",
"license": "MIT",
"devDependencies": {
"electron": "^19.1.9",
"electron-builder": "23.6.0",
"electron-icon-builder": "^2.0.1",
"node-gyp": "8.4.1"
},
"overrides": {
"prebuild": {
"node-gyp": "$node-gyp"
}
},
"dependencies": {
"JSONPath": "^0.11.2",
"ajv": "^8.6.0",
"ajv-draft-04": "^1.0.0",
"bonjour-service": "https://github.com/starfishmod/bonjour-service",
"cobs": "^0.2.1",
"commonmark": "^0.30.0",
"glob": "^7.1.7",
"json-ptr": "^3.1.1",
"json-stringify-pretty-compact": "^3.0.0",
"lokijs": "^1.5.12",
"midi": "^2.0.0",
"pako": "^2.0.3",
"path": "^0.12.7",
"pretty-print-json": "^1.3.1",
"sanitize-filename": "^1.6.3",
"serialport": "^10.5.0",
"tone": "^14.7.77",
"usb_midi_2": "./midi2usb"
},
"resolutions": {
"**/automation-events": "4.0.14",
"**/node-gyp": "8.4.1"
},
"build": {
"appId": "com.electron.midi2workbenchpublic",
"productName": "midi2workbench",
"mac": {
"category": "public.app-category.music",
"target": {
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
"publish": "github"
},
"linux": {
"target": "AppImage",
"synopsis": "MIDI 2.0 Workbench",
"category": "Audio",
"publish": "github",
"desktop": {
"Name": "MIDI 2.0 Workbench",
"Type": "Application"
}
},
"win": {
"target": [
"portable"
],
"publish": "github"
},
"appx": {
"applicationId": "midi2-workbench-public",
"displayName": "MIDI 2.0 Workbench",
"publisher": "MIDI Manufacturers Association",
"publisherDisplayName": "MIDI Manufacturers Association",
"identityName": ""
}
}
}