-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.84 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
91
92
93
94
95
96
97
98
99
100
101
{
"name": "midi2_workbench_public",
"version": "1.6.4p",
"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",
"mathjs": "^14.0.1",
"midi": "^2.0.0",
"pako": "^2.0.3",
"path": "^0.12.7",
"pretty-print-json": "^1.3.1",
"sanitize-filename": "^1.6.3",
"scrab": "^1.1.0",
"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",
"extraFiles": [
{
"from": "extras",
"to": "extras",
"filter": [
"**/*"
]
}
]
},
"appx": {
"applicationId": "midi2-workbench-public",
"displayName": "MIDI 2.0 Workbench",
"publisher": "MIDI Manufacturers Association",
"publisherDisplayName": "MIDI Manufacturers Association",
"identityName": ""
}
}
}