-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.03 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.03 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "screendeck",
"version": "2.0.0",
"author": "Joseph Adams <joseph@josephadams.dev>",
"description": "ScreenDeck is a virtual on-screen stream deck for Bitfocus Companion.",
"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 .",
"test:build": "yarn build && yarn electron-builder --dir --config",
"build:mac": "yarn build && electron-builder --mac",
"build:win": "yarn build && electron-builder --win",
"build:linux": "yarn build && electron-builder --linux",
"build:arm64": "yarn build && electron-builder --linux --arm64"
},
"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": [
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
},
{
"target": "deb",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "assets/tray-icon.png"
},
"generateUpdatesFilesForAllChannels": false
},
"dependencies": {
"electron-store": "^8.0.0",
"semver": "^7.7.2",
"short-uuid": "^5.2.0",
"ws": "^8.18.2"
},
"devDependencies": {
"@electron/notarize": "^2.5.0",
"@types/electron": "^1.6.12",
"@types/node": "^22.15.29",
"@types/semver": "^7.7.0",
"@types/ws": "^8.18.1",
"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"
}
}