Get package and make working. Remove non-electron-forge scripts. App doesn't start yet.

This commit is contained in:
sayhiben
2024-08-20 20:13:55 -07:00
parent d0f59e161f
commit f59b41aab0
2 changed files with 8 additions and 11 deletions

View File

@@ -2,21 +2,14 @@
"name": "streamwall",
"version": "1.0.0",
"description": "View streams in a grid",
"main": "./dist/main/main.js",
"main": "./.webpack/main",
"scripts": {
"build:main": "webpack --config webpack.main.config.js",
"build:renderer": "webpack --config webpack.renderer.config.js",
"build:web": "webpack --config webpack.web.config.js",
"build": "npm run build:main & npm run build:renderer & npm run build:web",
"prune": "rm -rf dist",
"start": "electron-forge start",
"start-local": "npm run build -- --stats=errors-only && electron dist --control.address=http://localhost:4444 --control.username=streamwall --control.password=local-dev",
"start-dev": "npm run build -- --stats=verbose && electron dist --enable-logging --control.address=http://localhost:4444 --control.username=streamwall --control.password=local-dev",
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --testPathIgnorePatterns=src/node/server.test.js --coverage",
"make": "electron-forge make",
"package": "electron-forge package",
"publish": "electron-forge publish",
"make": "electron-forge make"
"test": "jest",
"test:ci": "jest --ci --reporters=default --reporters=jest-junit --testPathIgnorePatterns=src/node/server.test.js --coverage"
},
"author": "Max Goodhart <c@chromakode.com>",
"license": "MIT",