-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "x32-proxy",
"version": "2.5.8",
"description": "Proxy server for Behringer X32/Midas M32-series consoles' OSC commands, for VPNs and IPv6 networks",
"homepage": "https://github.com/audiopump/x32-proxy",
"repository": {
"type": "git",
"url": "git+https://github.com/audiopump/x32-proxy.git"
},
"type": "module",
"main": "index.js",
"bin": {
"x32-proxy": "index.js"
},
"author": "Brad Isbell <brad@audiopump.co>",
"license": "BSD-3-Clause",
"copyright": "Copyright © 2025 AudioPump, Inc.",
"private": false,
"dependencies": {
"console.table": "^0.10.0",
"finalhandler": "^2.1.0",
"serve-static": "^2.2.0",
"ws": "^8.18.0",
"yargs": "^18.0.0"
},
"files": [
"/index.js",
"/lib"
],
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:unit": "node --env-file=test/.env --test test/unit/*.test.js",
"test:integration": "node --env-file=test/.env test/run-integration.js"
},
"devDependencies": {
"@types/node": "^24.7.1"
}
}