-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.29 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "rtadeck",
"version": "0.1.0",
"description": "Retro 8-bit Stream Deck for touch screens and smartphones. Customizable macro pad with NES-style UI, keyboard shortcuts, CLI commands, AI agent terminals. Open source Elgato alternative.",
"type": "module",
"bin": {
"rtadeck": "./bin/rtadeck.js"
},
"files": [
"bin/",
"server/",
"public/",
"rtadeck.config.schema.json"
],
"scripts": {
"start": "node bin/rtadeck.js serve",
"dev": "node bin/rtadeck.js serve --port 3000"
},
"keywords": [
"stream-deck", "streamdeck", "elgato-alternative", "free-stream-deck", "macro-pad", "macro-keyboard",
"phone-stream-deck", "smartphone-macro-pad", "wireless-stream-deck",
"touch-screen", "smart-display", "dashboard", "control-panel",
"keyboard-shortcuts", "hotkeys", "automation", "developer-tools",
"ai-agent", "claude-code", "terminal-launcher",
"retro", "8-bit", "nes-css", "pixel-art", "pico-8",
"pwa", "websocket", "express", "nodejs", "cross-platform",
"raspberry-pi", "kiosk", "remote-control", "lan"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"ajv": "^8.17.1",
"commander": "^13.1.0",
"express": "^5.1.0",
"open": "^10.1.0",
"qrcode": "^1.5.4",
"ws": "^8.18.0"
}
}