-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.52 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
{
"appx": {
"applicationId": "Floating Camera",
"backgroundColor": "#43464B",
"displayName": "Floating Camera",
"identityName": "Floating Camera",
"publisher": "CN=117F4A39-20B8-4D31-BA05-29685AAA9105",
"publisherDisplayName": "David Sabine",
"showNameOnTiles": false
},
"author": {
"email": "[email protected]",
"name": "David Sabine",
"url": "https://davidsabine.ca/"
},
"bugs" : "https://github.com/DavidSabine/floating-camera/issues",
"build": {
"appId": "com.electron.floating-camera",
"productName": "Floating Camera",
"linux": {
"target": "AppImage"
},
"mac": {
"target": "dmg"
},
"win": {
"target": "portable"
}
},
"dependencies": {
"source-map-support": "0.5.16"
},
"description": "Display your webcam over presentations and apps. Ideal for Zoom and Teams meetings.",
"devDependencies": {
"electron": "8.2.0",
"electron-builder": "22.4.1",
"electron-webpack": "2.8.2",
"webpack": "4.42.1"
},
"funding": [
{
"type" : "individual",
"url" : "https://paypal.me/DavidSabine"
}
],
"homepage": "https://github.com/DavidSabine/floating-camera",
"license": "BEER-WARE",
"name": "floating-camera",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/DavidSabine/floating-camera.git"
},
"scripts": {
"compile": "electron-webpack",
"dev": "electron-webpack dev",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"start": "electron ."
},
"version": "1.0.1"
}