-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.06 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
{
"name": "streamdeck-plus",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "Headless daemon for the Elgato Stream Deck Plus (macOS + Windows).",
"engines": {
"bun": ">=1.1.0"
},
"scripts": {
"dev": "bun --watch src/main.darwin.ts",
"dev:darwin": "bun --watch src/main.darwin.ts",
"dev:win32": "bun --watch src/main.win32.ts",
"typecheck": "tsc --noEmit",
"fetch-icons": "bun scripts/fetch-icons.ts",
"fetch-fonts": "bun scripts/fetch-fonts.ts",
"build:darwin": "bun build ./src/main.darwin.ts --compile --target=bun-darwin-arm64 --outfile dist/streamdeck-plus-darwin",
"build:win32": "bun build ./src/main.win32.ts --compile --target=bun-windows-x64 --outfile dist/streamdeck-plus-win32.exe && cp node_modules/@napi-rs/canvas-win32-x64-msvc/icudtl.dat dist/icudtl.dat"
},
"dependencies": {
"@elgato-stream-deck/node": "^7.0.0",
"@napi-rs/canvas": "^0.1.65",
"pino": "^9.5.0",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.7.0"
}
}