This repository has been archived by the owner on Aug 4, 2018. It is now read-only.
forked from crowbartools/Firebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.66 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
{
"name": "Firebot",
"version": "3.4.1",
"description": "An application for mixer.com that celebrates and promotes interactive controls.",
"main": "main.js",
"scripts": {
"start": "electron .",
"rebuild32": "node-gyp rebuild --directory=node_modules/robotjs/ --runtime=electron --target=1.4.15 --arch=ia32 --dist-url=https://atom.io/download/atom-shell",
"rebuild64": "node-gyp rebuild --directory=node_modules/robotjs/ --runtime=electron --target=1.4.15 --arch=x64 --dist-url=https://atom.io/download/atom-shell",
"pack:win32": "electron-packager . Firebot --out=./dist --platform=win32 --arch=ia32 --electronVersion=1.4.15 --asar --prune --overwrite --icon=./gui/images/logo.ico",
"pack:win64": "electron-packager . Firebot --out=./dist --platform=win32 --arch=x64 --electronVersion=1.4.15 --asar --prune --overwrite --icon=./gui/images/logo.ico",
"pack:lin32": "electron-packager . Firebot --out=./dist --platform=linux --arch=ia32 --electronVersion=1.4.15 --asar --prune --overwrite --icon=./gui/images/logo.ico",
"pack:lin64": "electron-packager . Firebot --out=./dist --platform=linux --arch=x64 --electronVersion=1.4.15 --asar --prune --overwrite --icon=./gui/images/logo.ico",
"pack:all32": "electron-packager . Firebot --out=./dist --platform=all --arch=ia32 --electronVersion=1.4.15 --asar --prune --overwrite --icon=./gui/images/logo.ico",
"pack:all64": "electron-packager . Firebot --out=./dist --platform=all --arch=x64 --electronVersion=1.4.15 --asar --prune --overwrite --icon=./gui/images/logo.ico",
"build32": "npm run pack:win32 && npm run pack:lin32",
"build64": "npm run pack:win64 && npm run pack:lin64",
"build-all": "echo Packaging 32bit versions && npm run rebuild32 && npm run pack:all32 && echo 32bit Packaging done.... && echo Packaging 64bit versions && npm run rebuild64 && npm run pack:all64",
"rebuild": "npm run rebuild64",
"build": "npm run pack:win64"
},
"repository": "https://github.com/Firebottle/Firebot",
"keywords": [
"Electron",
"mixer.com",
"interactive",
"streaming"
],
"author": "@Firebottletv",
"license": "GPL-3.0",
"devDependencies": {
"electron": "1.4.15",
"electron-packager": "^8.5.1",
"electron-rebuild": "^1.5.6"
},
"dependencies": {
"beam-client-node": "^0.13.0",
"beam-interactive-node2": "^2.0.0",
"compare-versions": "^3.0.1",
"electron-oauth2": "^2.4.1",
"howler": "^2.0.3",
"kbm-robot": "0.0.4",
"list.js": "^1.5.0",
"marked": "^0.3.6",
"node-json-db": "^0.7.3",
"random-puppy": "^1.1.0",
"request": "^2.81.0",
"robotjs": "^0.4.7",
"roll": "^1.2.0",
"validator": "^7.0.0",
"ws": "^2.3.1"
}
}