-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.91 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
45
46
47
48
49
{
"name": "dealerboard",
"version": "1.1.0",
"description": "A local macOS status board for coding agents.",
"license": "MIT",
"private": true,
"packageManager": "bun@1.3.14",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit && tsc --noEmit -p app/tsconfig.json",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check": "biome ci . && bun run build && bun test",
"build:core": "bun build --compile --minify --outfile dist/dealerboard src/core/cli.ts",
"build:plugin": "rollup --config",
"build": "bun run typecheck && bun run build:core && bun run build:plugin",
"pack:plugin": "bun ./node_modules/@elgato/cli/bin/streamdeck.mjs validate --no-update-check com.drewritter.dealerboard.sdPlugin && bun ./node_modules/@elgato/cli/bin/streamdeck.mjs pack --no-update-check com.drewritter.dealerboard.sdPlugin --output dist --force",
"build:app": "bun build app/src/main.ts --outdir app/dist --target browser --minify && cp app/index.html app/styles.css app/dist/",
"dev:app": "bun run build:app && cd app && bunx tauri dev",
"bundle:app": "bun run build:app && cd app && bunx tauri build",
"install:app": "bun scripts/install-app.ts",
"prepare": "lefthook install"
},
"dependencies": {
"@elgato/streamdeck": "^2.1.0",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-autostart": "^2.5.1"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@elgato/cli": "^1.7.4",
"@rollup/plugin-commonjs": "^29.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@tauri-apps/cli": "^2.11.4",
"@types/bun": "^1.3.14",
"@types/node": "^26.1.2",
"lefthook": "2.1.10",
"rollup": "^4.62.3",
"tslib": "^2.8.1",
"typescript": "^7.0.2"
}
}