-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.44 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
{
"name": "screendeck",
"version": "1.2.0",
"author": "Joseph Adams <[email protected]>",
"description": "ScreenDeck is a virtual on-screen stream deck for Bitfocus Companion, built with Electron and TypeScript. This application allows you to create a customizable keypad interface that can send button presses to Companion, enabling you to control various applications, and perform automated tasks, all from an easily accessible on-screen interface.",
"main": "dist/main.js",
"scripts": {
"start": "yarn build && electron .",
"build": "tsc",
"dev": "concurrently \"tsc -w\" \"wait-on dist/main.js && electron .\"",
"format": "prettier -w .",
"lint:raw": "eslint --ext .ts --ext .js --ignore-pattern dist --ignore-pattern pkg",
"lint": "yarn lint:raw ."
},
"build": {
"appId": "com.josephadams.screendeck",
"productName": "screendeck",
"files": [
"dist/**/*",
"public/**/*",
"assets/**/*"
],
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.utilities",
"icon": "assets/tray-icon.png",
"identity": "Joseph Adams (R2PY2DC3A4)",
"extendInfo": {
"NSApplicationSupportsSecureRestorableState": true,
"electronTeamId": "R2PY2DC3A4"
},
"hardenedRuntime": true,
"gatekeeperAssess": true,
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist"
},
"win": {
"target": "nsis",
"icon": "assets/tray-icon.ico"
},
"linux": {
"target": "AppImage",
"icon": "assets/tray-icon.png"
},
"generateUpdatesFilesForAllChannels": false
},
"dependencies": {
"electron-store": "^8.0.0",
"short-uuid": "^5.2.0"
},
"devDependencies": {
"@electron/notarize": "^2.5.0",
"@types/node": "^18.0.0",
"concurrently": "^8.0.0",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"prettier": "^3.3.3",
"ts-node": "^10.0.0",
"typescript": "^5.0.0",
"wait-on": "^7.0.0"
}
}