-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
183 lines (183 loc) · 6.07 KB
/
Copy pathpackage.json
File metadata and controls
183 lines (183 loc) · 6.07 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "bedrock-panel",
"version": "0.9.7",
"private": true,
"description": "A multi-use launcher and control platform for Windows, macOS, and Linux — your apps, media, dashboards, and smart home on your computer or a touchscreen.",
"main": "app/main.js",
"desktopName": "bedrock-panel.desktop",
"author": "TeeJS",
"engines": {
"node": ">=18 <27"
},
"scripts": {
"start": "node build-dpapi.js && node build-smtc.js && node build-mac-helpers.js && electron .",
"rebuild": "electron-rebuild -v 44.3.0 -f --only node-hid && node build-dpapi.js",
"build:dpapi": "node build-dpapi.js",
"build:smtc": "node build-smtc.js",
"build:mac-helpers": "node build-mac-helpers.js",
"test": "node --test test/*.test.js",
"dist": "node build-dpapi.js && node build-smtc.js && electron-builder --win",
"dist:mac": "node build-mac-helpers.js && node build-mac.js",
"dist:linux": "electron-builder --linux"
},
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"dk-quake",
"aris-68",
"decokee",
"stream-deck",
"macropad",
"node-hid",
"electron"
],
"dependencies": {
"@jitsi/robotjs": "^0.6.22",
"adm-zip": "^0.6.0",
"dbus-next": "^0.10.2",
"emojilib": "^4.0.3",
"mqtt": "^5.15.2",
"node-hid": "^3.3.0",
"obs-websocket-js": "^5.0.8",
"win-ca": "^3.5.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@electron/rebuild": "^4.0.1",
"electron": "^44.3.0",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "com.teejs.bedrockpanel",
"productName": "Bedrock Panel",
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!app/config.json",
"!docs/**",
"!tools/**",
"!native/**",
"!build-dpapi.js",
"!build-smtc.js",
"!build-mac.js",
"!build-mac-helpers.js",
"!build-mac-helpers.js",
"!sign.js",
"!afterpack.js",
"!.signing/**",
"!.ua/**",
"!community-apps/**",
"!community-wallpapers/**",
"!node_modules/win-ca/pem/**",
"!packaging/**",
"packaging/linux/70-bedrock-panel.rules",
"!test/**",
"!X/**",
"!.claude/**"
],
"npmRebuild": false,
"afterPack": "./afterpack.js",
"asarUnpack": [
"apps/**/*",
"app/native/**",
"app/linux/**",
"**/*.node",
"node_modules/win-ca/**"
],
"win": {
"target": [
"portable",
"nsis"
],
"icon": "app/icon.png",
"signtoolOptions": {
"sign": "./sign.js"
}
},
"portable": {
"artifactName": "bedrock-panel-portable.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": false,
"guid": "6b73d4a7-2e13-5aef-9474-9432dfa413dd",
"artifactName": "bedrock-panel-setup.${ext}"
},
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.utilities",
"icon": "app/icon-mac.png",
"artifactName": "bedrock-panel-${arch}.${ext}",
"minimumSystemVersion": "14.2",
"identity": "-",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "packaging/mac/entitlements.mac.plist",
"entitlementsInherit": "packaging/mac/entitlements.mac.inherit.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "Bedrock Panel records your microphone for meeting recordings, dictation, and the voice apps.",
"NSAudioCaptureUsageDescription": "Bedrock Panel records what your Mac is playing (the other side of a meeting) for meeting recordings.",
"NSLocalNetworkUsageDescription": "Bedrock Panel talks to Home Assistant, OBS, WLED lights, and MQTT brokers on your local network.",
"NSDocumentsFolderUsageDescription": "Bedrock Panel saves meeting recordings and transcripts under Documents by default.",
"NSAppleEventsUsageDescription": "Bedrock Panel controls Music and Spotify playback from the panel.",
"NSInputMonitoringUsageDescription": "Bedrock Panel reads the DK-QUAKE touch controller directly; macOS counts that as input monitoring (Accessibility covers it).",
"NSAccessibilityUsageDescription": "Bedrock Panel needs Accessibility to read the DK-QUAKE touchscreen, keep other windows off the panel display, and send keystrokes for tiles and macros.",
"NSCalendarsFullAccessUsageDescription": "Bedrock Panel reads today's meetings from macOS Calendar to name meeting recordings and to give the transcript the attendee list.",
"NSCalendarsUsageDescription": "Bedrock Panel reads today's meetings from macOS Calendar to name meeting recordings and to give the transcript the attendee list.",
"NSSpeechRecognitionUsageDescription": "Bedrock Panel uses macOS speech recognition (on this Mac) for the voice apps and dictation when you choose the built-in speech engine."
}
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility",
"icon": "app/icon.png",
"executableName": "bedrock-panel",
"syncDesktopName": true,
"artifactName": "bedrock-panel-${arch}.${ext}",
"synopsis": "Launcher and control platform for the DK-QUAKE touchscreen panel",
"desktop": {
"entry": {
"Name": "Bedrock Panel",
"Categories": "Utility;",
"StartupWMClass": "bedrock-panel"
}
},
"maintainer": "TeeJS <TeeJS@users.noreply.github.com>",
"extraFiles": [
{
"from": "packaging/linux/70-bedrock-panel.rules",
"to": "70-bedrock-panel.rules"
}
]
},
"deb": {
"artifactName": "bedrock-panel_${arch}.${ext}",
"afterInstall": "packaging/linux/after-install.sh",
"afterRemove": "packaging/linux/after-remove.sh",
"depends": [
"libgtk-3-0",
"libnotify4",
"libnss3",
"libxss1",
"libxtst6",
"xdg-utils",
"libatspi2.0-0",
"libuuid1",
"libsecret-1-0",
"python3",
"python3-gi"
]
},
"dmg": {
"sign": false
}
}
}