-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
74 lines (74 loc) · 1.88 KB
/
package.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "satellite",
"version": "2.0.1",
"description": "Satellite Streamdeck connector for Bitfocus Companion",
"author": {
"name": "Julian Waller",
"email": "[email protected]",
"url": "https://github.com/julusian"
},
"type": "module",
"main": "dist/electron.js",
"license": "MIT",
"private": true,
"scripts": {
"dev": "tsx watch src/main.ts config.json",
"dev:electron": "run build:main && electron dist/electron.js",
"build": "rimraf dist && run build:main",
"build:main": "run -T tsc -p tsconfig.build.json",
"check-types": "run build:main --noEmit",
"watch-types": "run build:main --noEmit --watch"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/koa": "^2.15.0",
"@types/koa-router": "^7.4.8",
"@types/koa-static": "^4.0.4",
"@types/node": "^20.17.16",
"@types/semver": "^7.5.8",
"@types/ws": "^8.5.12",
"cross-env": "^7.0.3",
"electron": "34.0.2",
"electron-builder": "^26.0.2",
"rimraf": "^6.0.1",
"tsx": "^4.19.2"
},
"engines": {
"node": "^20.14"
},
"dependencies": {
"@blackmagic-controller/node": "^0.1.1",
"@elgato-stream-deck/node": "^7.1.2",
"@julusian/bonjour-service": "^1.3.0-2",
"@julusian/image-rs": "^1.1.1",
"@julusian/jpeg-turbo": "^2.2.0",
"@julusian/segfault-raub": "^2.3.1",
"@loupedeck/node": "^1.2.0",
"@napi-rs/canvas": "^0.1.65",
"@xencelabs-quick-keys/node": "^1.0.0",
"conf": "^13.1.0",
"debounce-fn": "^6.0.0",
"electron-store": "^10.0.1",
"electron-updater": "^6.5.0",
"exit-hook": "^4.0.0",
"infinitton-idisplay": "^1.2.0",
"koa": "^2.15.3",
"koa-body": "^6.0.1",
"koa-router": "^13.0.1",
"koa-static": "^5.0.0",
"nanoid": "^5.0.9",
"node-hid": "^3.1.2",
"semver": "^7.7.0",
"tslib": "^2.8.1",
"usb": "^2.14.0",
"ws": "^8.18.0"
},
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"run -T lint:raw --fix"
]
}
}