chore: scaffold llama-watch Stream Deck plugin

This commit is contained in:
2026-08-14 10:33:48 -06:00
parent beada4e44d
commit 2f5c5e33b0
12 changed files with 2664 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"name": "llama-watch",
"version": "1.0.0",
"description": "Stream Deck plugin to monitor llama-swap requests and GPU metrics.",
"private": true,
"type": "module",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w --watch.onEnd=\"streamdeck restart com.bryce.llamawatch\"",
"test": "tsx --test tests/"
},
"devDependencies": {
"@elgato/cli": "^1.8.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/node20": "^20.1.4",
"@types/node": "22.13.0",
"rollup": "^4.32.1",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@elgato/streamdeck": "^2.1.1"
}
}