mirror of
https://github.com/streamwall/streamwall.git
synced 2025-12-06 01:45:37 -05:00
This fixes glitches when typing in the grid boxes by allowing concurrent writes and removing the need to read state from the server to render the box values.
63 lines
1.8 KiB
JSON
63 lines
1.8 KiB
JSON
{
|
|
"name": "streamwall",
|
|
"version": "0.0.1",
|
|
"description": "View streams in a grid",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"build": "webpack",
|
|
"start": "npm run build -- --display=errors-only && electron dist",
|
|
"start-local": "npm run build -- --display=errors-only && electron dist --control.address=http://localhost:4444 --control.username=woke --control.password=woke",
|
|
"test": "jest"
|
|
},
|
|
"author": "Max Goodhart <c@chromakode.com>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@iarna/toml": "^2.2.5",
|
|
"@repeaterjs/repeater": "^3.0.1",
|
|
"chokidar": "^3.4.0",
|
|
"color": "^3.1.2",
|
|
"dank-twitch-irc": "^3.3.0",
|
|
"ejs": "^3.1.3",
|
|
"electron": "^9.0.4",
|
|
"koa": "^2.12.1",
|
|
"koa-basic-auth": "^4.0.0",
|
|
"koa-easy-ws": "^1.1.3",
|
|
"koa-route": "^3.2.0",
|
|
"koa-static": "^5.0.0",
|
|
"koa-views": "^6.3.0",
|
|
"lodash": "^4.17.15",
|
|
"node-fetch": "^2.6.0",
|
|
"node-simple-cert": "0.0.1",
|
|
"preact": "^10.4.4",
|
|
"react-hotkeys-hook": "^2.1.3",
|
|
"reconnecting-websocket": "^4.4.0",
|
|
"styled-components": "^5.1.1",
|
|
"svg-loaders-react": "^2.2.1",
|
|
"ws": "^7.3.0",
|
|
"xstate": "^4.10.0",
|
|
"yargs": "^15.3.1",
|
|
"yjs": "^13.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.10.2",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
|
|
"@babel/plugin-transform-react-jsx": "^7.10.1",
|
|
"@babel/preset-env": "^7.10.2",
|
|
"@svgr/webpack": "^5.4.0",
|
|
"babel-jest": "^26.0.1",
|
|
"babel-loader": "^8.1.0",
|
|
"babel-plugin-styled-components": "^1.10.7",
|
|
"copy-webpack-plugin": "^6.0.2",
|
|
"css-loader": "^3.6.0",
|
|
"file-loader": "^6.0.0",
|
|
"jest": "^26.0.1",
|
|
"prettier": "2.0.5",
|
|
"style-loader": "^1.2.1",
|
|
"webpack": "^4.43.0",
|
|
"webpack-cli": "^3.3.11"
|
|
},
|
|
"browserslist": [
|
|
"electron 9.0"
|
|
]
|
|
}
|