Some checks failed
Build / increment-version (push) Successful in 8s
Build / build-linux (push) Successful in 2m26s
Build Paarrot Windows / build (push) Has been cancelled
Build Paarrot Windows / start-vm (push) Has been cancelled
Build / build-windows (push) Successful in 4m28s
Build / create-release (push) Successful in 30s
- Implemented main plugin structure including manifest, HTML, and JavaScript files. - Added actions for toggling mute, toggling deafen, changing channels, sending messages, and getting status. - Created property inspector for changing channels and sending messages. - Developed SVG icons for actions and status display. - Established WebSocket connection for communication with the Stream Deck. - Implemented API calls to interact with the Paarrot voice chat application. - Added validation script to ensure proper plugin structure and manifest compliance. - Included test Electron application for window creation and loading content.
47 lines
1.5 KiB
JSON
47 lines
1.5 KiB
JSON
{
|
|
"name": "paarrot",
|
|
"version": "4.11.51",
|
|
"description": "Paarrot - A Matrix client based on Cinny",
|
|
"homepage": "http://synbox.ruv.wtf:8418/litruv/cinny-desktop",
|
|
"main": "electron/main.js",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "concurrently \"npm run dev:vite\" \"npm run dev:electron\"",
|
|
"dev:vite": "cd cinny && npm start",
|
|
"dev:electron": "wait-on http://localhost:38347 && cross-env NODE_ENV=development electron .",
|
|
"build": "node -e \"require('fs').copyFileSync('config.json', 'cinny/config.json')\" && cd cinny && npm run build && cd .. && electron-builder --publish never",
|
|
"build:linux": "npm run build -- --linux",
|
|
"build:win": "npm run build -- --win",
|
|
"postman:generate": "node scripts/generate-postman-collection.js"
|
|
},
|
|
"keywords": [],
|
|
"author": {
|
|
"name": "Mates.Media",
|
|
"email": "mates.media@users.noreply.github.com"
|
|
},
|
|
"license": "AGPL-3.0-only",
|
|
"dependencies": {
|
|
"body-parser": "2.2.2",
|
|
"cors": "2.8.6",
|
|
"electron-squirrel-startup": "^1.0.1",
|
|
"electron-store": "^8.2.0",
|
|
"electron-updater": "^6.3.9",
|
|
"express": "5.2.1",
|
|
"open": "11.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@actions/github": "6.0.0",
|
|
"@electron/rebuild": "4.0.3",
|
|
"concurrently": "9.2.1",
|
|
"cross-env": "10.1.0",
|
|
"electron": "40.6.0",
|
|
"electron-builder": "26.8.1",
|
|
"node-fetch": "3.3.2",
|
|
"png2icons": "2.0.1",
|
|
"sharp": "0.34.5",
|
|
"wait-on": "9.0.4"
|
|
}
|
|
}
|