-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.46 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
{
"name": "codex-stream-deck",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "A Stream Deck control surface for local Codex projects and tasks.",
"license": "MIT",
"keywords": ["codex", "stream-deck", "productivity", "developer-tools"],
"scripts": {
"build": "rollup --config",
"dev": "rollup --config --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "node scripts/run-integration.mjs",
"typecheck": "tsc --noEmit",
"validate": "streamdeck validate com.codexstreamdeck.control.sdPlugin",
"validate:ci": "streamdeck validate com.codexstreamdeck.control.sdPlugin --no-update-check",
"privacy": "node scripts/check-release.mjs",
"security": "npm audit --audit-level=high && npm audit signatures && npm run privacy",
"check": "npm run typecheck && npm test && npm run build && npm run validate",
"pack": "npm run build && streamdeck pack com.codexstreamdeck.control.sdPlugin --force"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@elgato/streamdeck": "2.1.0",
"ajv": "8.20.0"
},
"devDependencies": {
"@elgato/cli": "1.7.4",
"@openai/codex": "0.144.4",
"@rollup/plugin-commonjs": "29.0.0",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@types/node": "24.10.13",
"rollup": "4.62.2",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vitest": "4.1.10"
}
}