-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.05 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
{
"name": "bloom",
"version": "2.2.0",
"description": "Bloom — Screen recorder powered by VideoDB",
"main": "src/main/index.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder",
"pack": "electron-builder --dir"
},
"keywords": [],
"author": "VideoDB",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"electron": "^39.7.0",
"electron-builder": "^24.6.4"
},
"build": {
"appId": "com.videodb.bloom",
"productName": "Bloom",
"files": [
"src/**/*",
"package.json"
],
"asar": true,
"asarUnpack": [
"node_modules/videodb/bin/**"
],
"mac": {
"identity": null,
"icon": "build/icon.icns",
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"extendInfo": {
"NSScreenCaptureUsageDescription": "Bloom needs screen recording permission to capture your display during sessions.",
"NSMicrophoneUsageDescription": "Bloom needs microphone access to capture audio during sessions.",
"NSCameraUsageDescription": "Bloom needs camera access to capture your webcam during sessions."
},
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
}
],
"artifactName": "bloom-${version}-${arch}.${ext}"
},
"dmg": {
"title": "Bloom ${version}",
"icon": "build/icon.icns",
"window": {
"width": 540,
"height": 380
},
"contents": [
{ "x": 140, "y": 200, "type": "file" },
{ "x": 400, "y": 200, "type": "link", "path": "/Applications" }
]
},
"win": {
"target": ["nsis"],
"icon": "build/icon.ico",
"artifactName": "bloom-${version}-${arch}.${ext}"
},
"nsis": {
"oneClick": true,
"perMachine": false
},
"afterPack": "./build/afterPack.js"
},
"dependencies": {
"dotenv": "^17.2.3",
"sql.js": "^1.11.0",
"videodb": "^0.2.4"
}
}