-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.44 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
42
43
44
{
"name": "codex-stream-deck",
"version": "0.7.0-hotfix.2",
"private": false,
"type": "module",
"description": "Unofficial Codex Micro bridge for Stream Deck on Windows and macOS, with optional multi-host relay",
"license": "MIT",
"author": "Dazer",
"repository": {
"type": "git",
"url": "https://github.com/dazer1234/codex-stream-deck.git"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "node scripts/build.mjs && node scripts/build-launcher.mjs",
"docs:preview": "tsx scripts/generate-doc-preview.ts",
"qa:local-icons": "tsx scripts/generate-local-icon-qa.ts",
"smoke:relay": "tsx scripts/relay-smoke.ts",
"audit:release": "node scripts/audit-release.mjs",
"check": "tsc --noEmit",
"test": "tsx --test test/*.test.ts",
"validate": "npm run build && streamdeck validate dist/com.simeo.codex-deck.sdPlugin",
"pack": "npm run build && streamdeck pack dist/com.simeo.codex-deck.sdPlugin --force",
"release:prepare": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/prepare-release.ps1"
},
"dependencies": {
"@elgato/streamdeck": "2.1.0",
"bonjour-service": "^1.4.3",
"qrcode": "^1.5.4",
"selfsigned": "^5.5.0",
"ws": "^8.21.1"
},
"devDependencies": {
"@elgato/cli": "1.7.4",
"@types/node": "^24.0.0",
"@types/qrcode": "^1.5.6",
"@types/ws": "^8.18.1",
"esbuild": "0.28.1",
"tsx": "^4.20.0",
"typescript": "^5.9.0"
}
}