-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1017 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1017 Bytes
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
{
"name": "dotx-streamdeck",
"version": "0.1.1",
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rollup -c && node scripts/copy-static.mjs",
"build:sidecar": "cargo build --release --manifest-path sidecar/Cargo.toml && node scripts/copy-static.mjs",
"watch": "rollup -c -w --watch.onEnd=\"node scripts/copy-static.mjs\"",
"validate": "streamdeck validate com.dotmatrixlabs.dotx.streamdeck.sdPlugin",
"package": "npm run build && streamdeck pack com.dotmatrixlabs.dotx.streamdeck.sdPlugin --output dist --force"
},
"dependencies": {
"@elgato/streamdeck": "^2.1.0",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@elgato/cli": "^1.7.4",
"@rollup/plugin-commonjs": "^28.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.10.1",
"rollup": "^4.53.3",
"sharp": "^0.34.5",
"typescript": "^5.9.3"
}
}