-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 902 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 902 Bytes
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
{
"name": "ghost-screen",
"version": "1.0.0",
"description": "Stealth screen sharing - capture your screen and stream it as a local web page for secondary sharing",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder --mac",
"pack": "electron-builder --mac --dir"
},
"build": {
"appId": "com.ghost-screen.app",
"productName": "GhostScreen",
"mac": {
"category": "public.app-category.utilities",
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"extendInfo": {
"NSScreenCaptureUsageDescription": "GhostScreen needs screen capture permission to stream your screen."
}
}
},
"dependencies": {
"express": "^4.21.0",
"ws": "^8.18.0"
},
"devDependencies": {
"electron": "^33.0.0",
"electron-builder": "^25.0.0"
}
}