forked from bitfocus/companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·122 lines (122 loc) · 3.44 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "companion",
"version": "2.0.0",
"description": "Companion",
"main": "bitfocus-skeleton/main.js",
"build": {
"productName": "Companion",
"appId": "companion.bitfocus.no",
"mac": {
"category": "no.bitfocus.companion",
"extendInfo": {
"LSBackgroundOnly": 1,
"LSUIElement": 1
}
},
"win": {
"target": "nsis"
},
"nsis": {
"artifactName": "companion-win64.exe",
"createStartMenuShortcut": true,
"perMachine": true,
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "icon.ico",
"installerSidebar": "compinst.bmp",
"uninstallerSidebar": "compinst.bmp"
},
"directories": {
"buildResources": "assets/",
"output": "electron-output/"
},
"files": [
"**/*",
"assets/icon.png",
"assets/trayTemplate.png",
"assets/[email protected]",
"!font/*",
"!documentation/*",
"!tools/*",
"!*.md"
]
},
"scripts": {
"prod": "./tools/build_writefile.sh && ./bitfocus-skeleton/start.sh",
"dev": "./tools/build_writefile.sh && DEVELOPER=1 ./bitfocus-skeleton/start.sh",
"update": "./tools/update.sh",
"pack": "electron-builder --dir",
"dist": "rm -rf electron-output && electron-builder",
"testprod": "./node_modules/electron/cli.js .",
"macdist": "rm -rf electron-output && electron-builder --mac",
"windist": "rm -rf electron-output && electron-builder --win",
"lindist": "rm -rf electron-output && electron-builder --linux tar.gz",
"rpidist": "rm -rf electron-output && electron-builder --armv7l --linux tar.gz",
"start": "yarn run",
"test": "mocha"
},
"repository": "https://github.com/bitfocus/companion",
"keywords": [
"bitfocus",
"companion"
],
"author": "Bitfocus AS",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chai-fs": "^2.0.0",
"electron": "^2.0.8",
"electron-builder": "20.10.0",
"mocha": "^6.1.4"
},
"dependencies": {
"@coreui/coreui": "^2.0.0-rc.2",
"@coreui/coreui-plugin-chartjs-custom-tooltips": "1.2.0",
"app-root-path": "^2.0.1",
"binopsy": "^0.0.0",
"bootstrap": "^4.2.1",
"bootstrap-colorpicker": "^2.5.2",
"chart.js": "^2.7.2",
"check-ip": "^1.1.1",
"debug": "^4.1.1",
"electron-debug": "^1.5.0",
"electron-rpc": "^2.0.1",
"elgato-stream-deck-clean": "^1.0.1",
"elgato-stream-deck-clean-mini": "^1.0.1",
"elgato-stream-deck-clean-xl": "1.0.8",
"express": "^4.16.3",
"flag-icon-css": "3.0.0",
"font-awesome": "4.7.0",
"fs-extra": "^7.0.0",
"infinitton-idisplay": "^1.0.5",
"jquery": ">=3.4.0",
"json-parser": "^1.1.5",
"lodash": "^4.17.10",
"marked": "^0.6.0",
"mkdirp": "^0.5.1",
"moment": "^2.22.2",
"network": "^0.4.1",
"node-rest-client": "^3.1.0",
"opencollective": "^1.0.3",
"opencollective-postinstall": "^2.0.1",
"osc": "^2.2.2",
"pace-progress": "1.0.2",
"perfect-scrollbar": "^1.3.0",
"ping": "^0.2.2",
"pngjs": "^3.3.3",
"popper.js": "1.14.3",
"read-package-json": "^2.0.13",
"select2": "4.0.3",
"shortid": "^2.2.8",
"simple-line-icons": "2.4.1",
"socket.io": "^2.1.0",
"socket.io-client": "^2.1.0",
"strip-ansi": "^5.2.0",
"websocket": "^1.0.28"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/companion"
}
}