package.json 685 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "twich-points-alerts",
  3. "version": "0.1.0",
  4. "description": "Simple solution to play mp4 on stream triggered by twitch points",
  5. "main": "dst/main.js",
  6. "build": {
  7. "productName": "TPA",
  8. "appId": "parad0x.tpa",
  9. "win": {
  10. "target": ["portable"]
  11. }
  12. },
  13. "scripts": {
  14. "pack": "electron-builder --dir",
  15. "dist": "electron-builder"
  16. },
  17. "keywords": [],
  18. "author": "Parad0xPl",
  19. "license": "ISC",
  20. "devDependencies": {
  21. "@types/node": "^12.12.26",
  22. "@types/ws": "^7.2.1",
  23. "electron": "^7.1.11",
  24. "electron-builder": "^22.3.2",
  25. "ts-node": "^8.6.2",
  26. "typescript": "^3.7.5"
  27. },
  28. "dependencies": {
  29. "ws": "^7.2.1"
  30. }
  31. }