1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-08-10 03:02:48 +00:00
fcast/receivers/electron/package.json
2023-12-10 12:03:06 +01:00

28 lines
832 B
JSON

{
"name": "fcast-receiver",
"version": "1.0.9",
"description": "An application implementing a FCast receiver.",
"main": "dist/bundle.js",
"author": "Koen Jeukendrup",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/ && webpack --config ./webpack.config.js && cp -r src/player dist/player && cp -r src/main dist/main && cp app.ico dist/ && cp app.png dist/",
"start": "npm run build && electron ."
},
"devDependencies": {
"@types/workerpool": "^6.1.1",
"@types/ws": "^8.5.10",
"electron": "^22.2.0",
"mdns-js": "github:mdns-js/node-mdns-js",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"bufferutil": "^4.0.8",
"qrcode": "^1.5.3",
"utf-8-validate": "^6.0.3",
"ws": "^8.14.2"
}
}