-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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
{
"name": "OSCWebMixerV2",
"main": "index.js",
"version": "2.3.2",
"description": "A server that allows web clients and other external devices to control their own mix for DiGiCo sound desks.",
"author": "Marc Castles",
"homepage": "https://launchinteractive.com.au",
"repository": {
"type": "git",
"url": "git://github.com/"
},
"scripts": {
"start": "node index.js",
"package": "npx pkg . --output \"dist/${npm_package_name}-${npm_package_version}\"",
"package-plugins": "zip -r dist/${npm_package_name}-plugins-${npm_package_version}.zip plugins/"
},
"license": "MIT",
"keywords": [
"Open Sound Control",
"OSC",
"sound",
"audio",
"DiGiCo"
],
"devDependencies": {
"@yao-pkg/pkg": "^6.10.1"
},
"dependencies": {
"colortranslator": "^5.0.0",
"config": "^3.3.9",
"express": "^4.22.1",
"ora": "^5.4.1",
"osc": "github:castles/osc.js",
"ws": "8.18.3"
},
"pkg": {
"scripts": [
"lib/**/*.js",
"index.js"
],
"assets": [
"web/**/*"
],
"targets": [
"node22-linux-x64",
"node22-macos-x64",
"node22-macos-arm64",
"node22-win-x64"
],
"outputPath": "dist"
},
"bin": {
"oscwebmixer2": "index.js"
}
}