-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
60 lines (60 loc) · 1.28 KB
/
package.json
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
{
"name": "mqtt-dmx-controller",
"version": "1.1.0",
"private": true,
"description": "A simple ArtNet / DMX Controller with MQTT Interface",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "build",
"test": "xo --space 4"
},
"repository": "https://github.com/hobbyquaker/mqtt-dmx-controller",
"keywords": [
"ArtNet",
"DMX",
"Stage Lighting",
"Lighting",
"LED"
],
"author": "Sebastian Raff <hq@ccu.io> https://github.com/hobbyquaker",
"contributors": [
"https://github.com/4lloyd"
],
"license": "MIT",
"devDependencies": {
"electron": "latest",
"electron-builder": "latest",
"xo": "latest"
},
"dependencies": {
"artnet": "^1.4.0",
"async": "^3.0.1",
"bootstrap": "^3.3.7",
"bootstrap-slider": "^10.6.1",
"electron-is-dev": "^1.1.0",
"electron-window-state": "^5.0.3",
"font-awesome": "^4.7.0",
"free-jqgrid": "^4.15.5",
"jquery": "^3.4.1",
"jquery-ui": "^1.12.1",
"mkdirp": "^0.5.1",
"mqtt": "^3.0.0",
"persist-path": "^1.0.2",
"scene-sequencer": "^2.0.2"
},
"build": {
"productName": "MQTT DMX Controller",
"mac": {
"target": [
"dmg"
]
},
"linux": {
"target": [
"deb",
"tar.gz"
]
}
}
}