1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00
fcast/receivers/electron/package.json

44 lines
1.2 KiB
JSON
Raw Normal View History

2023-06-20 08:45:01 +02:00
{
"name": "fcast-receiver",
2024-04-03 19:24:06 +02:00
"version": "1.0.14",
2023-06-20 08:45:01 +02:00
"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 .",
"test": "jest"
2023-06-20 08:45:01 +02:00
},
"devDependencies": {
2024-09-06 16:21:00 -05:00
"@eslint/js": "^9.10.0",
"@types/jest": "^29.5.11",
2023-12-30 10:55:30 +01:00
"@types/mdns": "^0.0.38",
"@types/node-forge": "^1.3.10",
2023-06-20 08:45:01 +02:00
"@types/workerpool": "^6.1.1",
"@types/ws": "^8.5.10",
2023-06-20 08:45:01 +02:00
"electron": "^22.2.0",
2024-09-06 16:21:00 -05:00
"eslint": "^9.10.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
2023-06-20 08:45:01 +02:00
"mdns-js": "github:mdns-js/node-mdns-js",
"ts-jest": "^29.1.1",
2023-06-20 08:45:01 +02:00
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
2024-09-06 16:21:00 -05:00
"typescript-eslint": "^8.4.0",
2023-06-20 08:45:01 +02:00
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
2024-09-06 15:44:20 -05:00
"@types/yargs": "^17.0.33",
"bufferutil": "^4.0.8",
2024-01-04 12:38:39 +01:00
"http": "^0.0.1-security",
2023-12-30 10:55:30 +01:00
"https": "^1.0.0",
"qrcode": "^1.5.3",
2024-01-04 12:38:39 +01:00
"url": "^0.11.3",
"uuid": "^9.0.1",
2024-09-06 15:44:20 -05:00
"ws": "^8.14.2",
"yargs": "^17.7.2"
2023-06-20 08:45:01 +02:00
}
}