-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 783 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 783 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
30
31
32
33
34
35
36
37
38
{
"name": "osc2artnet",
"version": "0.4.0",
"description": "Receives OSC-Packages (e.g. from TouchOSC) and translates them to ArtNet-DMX, e.g. for Light-Software remote control",
"dependencies": {
"dmxnet": "^0.1.2",
"osc": "^2.2.0"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/margau/osc2artnet"
},
"bugs": {
"url": "https://github.com/margau/osc2artnet/issues"
},
"keywords": [
"ArtNet",
"DMX",
"DigitalMultiplex",
"Lightning",
"OSC",
"Open Sound Control",
"Converter",
"Translator"
],
"license": "MIT",
"author": {
"name": "Marvin Gaube",
"email": "dev@marvingaube.de",
"url": "https://marvingaube.de"
},
"preferGlobal": "true",
"bin": {
"osc2artnet": "./index.js",
"o2a": "./index.js"
}
}