forked from crowbartools/Firebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 5.12 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
{
"name": "Firebot",
"version": "4.13.5",
"description": "An application for mixer.com that celebrates and promotes interactive controls.",
"main": "main.js",
"scripts": {
"start": "npm run compile:scss && electron .",
"start:noscss": "electron .",
"compile:scss": "npm run compile:scssGui && npm run compile:scssOverlay",
"compile:scssGui": "./node_modules/.bin/node-sass --recursive --output ./gui/css ./gui/scss",
"compile:scssOverlay": "./node_modules/.bin/node-sass --recursive --output ./resources/overlay/css ./resources/overlay/scss",
"lint": "./node_modules/.bin/eslint .",
"locallint": "./node_modules/.bin/eslint . --output-file=eslint.log.htm --format=html --fix",
"rebuild32": "node-gyp rebuild --directory=node_modules/robotjs/ --runtime=electron --target=1.7.10 --arch=ia32 --dist-url=https://atom.io/download/atom-shell",
"rebuild64": "node-gyp rebuild --directory=node_modules/robotjs/ --runtime=electron --target=1.7.10 --arch=x64 --dist-url=https://atom.io/download/atom-shell",
"pack:win32": "electron-packager . Firebot --out=./dist --platform=win32 --arch=ia32 --electronVersion=1.7.10 --asar --prune --overwrite --icon=./gui/images/logo.ico --ignore=/user-settings --ignore=/kbm-java --ignore=/.vscode",
"pack:win64": "electron-packager . Firebot --out=./dist --platform=win32 --arch=x64 --electronVersion=1.7.10 --asar --prune --overwrite --version-string.ProductName=\"Firebot\" --icon=./gui/images/logo.ico --ignore=/user-settings --ignore=/resources --ignore=/.vscode && xcopy /s /i resources\\overlay .\\dist\\Firebot-win32-x64\\resources\\overlay && xcopy /s /i resources\\kbm-java .\\dist\\Firebot-win32-x64\\resources\\kbm-java && xcopy /s /i resources\\default-configs .\\dist\\Firebot-win32-x64\\resources\\default-configs && xcopy /s /i /Y resources\\ffmpeg .\\dist\\Firebot-win32-x64\\resources\\ffmpeg",
"pack:mac": "electron-packager . Firebot --out=./dist --platform=darwin --arch=x64 --electronVersion=1.7.10 --asar --prune --overwrite --version-string.ProductName=\"Firebot\" --icon=./gui/images/logo.icns --ignore=/user-settings --ignore=/resources --ignore=/.vscode && mkdir -p ./dist/Firebot-darwin-x64/resources/overlay && cp -a ./resources/overlay/. ./dist/Firebot-darwin-x64/resources/overlay/ && mkdir -p ./dist/Firebot-darwin-x64/resources/kbm-java && cp -a ./resources/kbm-java/. ./dist/Firebot-darwin-x64/resources/kbm-java/",
"build32": "npm run compile:scss && npm run pack:win32",
"build64": "npm run compile:scss && npm run pack:win64",
"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 build64",
"package": "echo Compiling SCSS to CSS && npm run compile:scss && echo Building Electron package && npm run pack:win64 && echo Packing the installer && grunt create-windows-installer && echo Installer package ready!"
},
"repository": "https://github.com/Firebottle/Firebot",
"keywords": [
"mixer",
"mixer.com",
"stream",
"streaming",
"electron"
],
"author": "A Mixer Community Project",
"license": "GPL-3.0",
"devDependencies": {
"electron": "1.7.10",
"electron-packager": "10.1.2",
"electron-rebuild": "1.7.3",
"grunt": "^1.0.1",
"grunt-electron-installer": "^2.1.0",
"node-sass": "^4.7.2"
},
"dependencies": {
"@mixer/client-node": "^3.0.0",
"angular": "^1.5.5",
"angular-animate": "^1.5.5",
"angular-route": "^1.6.4",
"angular-sanitize": "^1.6.6",
"angular-summernote": "^0.8.1",
"angular-ui-bootstrap": "^2.5.0",
"angular-ui-sortable": "^0.18.0",
"angularjs-slider": "^6.2.2",
"archiver": "^2.0.3",
"beam-interactive-node2": "^2.8.4",
"body-parser": "^1.18.1",
"carina": "^0.11.0",
"compare-versions": "^3.0.1",
"electron-gh-releases": "^2.0.4",
"electron-oauth2": "^3.0.0",
"electron-window-state": "^4.1.1",
"eslint": "^4.8.0",
"express": "^4.15.4",
"howler": "https://github.com/ebiggz/howler.js/tarball/master",
"kbm-robot": "https://github.com/Skriglitz/kbm-robot/tarball/master",
"list.js": "^1.5.0",
"marked": "^0.3.12",
"mathjs": "^3.18.0",
"moment": "^2.19.4",
"ncp": "^2.0.0",
"node-cache": "^4.1.1",
"node-json-db": "^0.7.3",
"random-puppy": "^1.1.0",
"request": "^2.81.0",
"request-debug": "^0.2.0",
"request-image-size": "^2.1.0",
"rimraf": "^2.6.2",
"robotjs": "^0.4.7",
"roll": "^1.2.0",
"sanitize-filename": "^1.6.1",
"ui-select": "^0.19.8",
"underscore": "^1.8.3",
"unzipper": "^0.8.11",
"validator": "^9.1.2",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6",
"winston-raven-sentry": "^1.0.1",
"ws": "^4.0.0"
}
}