-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
{
"name": "glass",
"productName": "Glass",
"author": {
"name": "Jerson La Torre",
"email": "[email protected]"
},
"description": "Webcam tool for making tutorials or video conferencing",
"version": "1.0.0",
"main": "ipc-main/index.js",
"license": "MIT",
"scripts": {
"start": "electron .",
"buildWindows": "electron-packager --electron-version='11.1.0' --asar --platform='win32' --arch=x64 --icon=build/icon.ico --prune=true --out=dist/windows --version-string.CompanyName=Plug --version-string.ProductName='Glass' --overwrite .",
"buildMacOS": "electron-packager --electron-version='11.1.0' --platform='darwin' --overwrite . --out=dist/macOS --icon=build/icon.png",
"buildLinux": "electron-builder"
},
"build": {
"appId": "997044c5-1343-4138-b561-442d35a32460",
"directories": {
"output": "dist/linux"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "squirrel",
"icon": "build/icon.ico"
}
},
"devDependencies": {
"electron": "^22.3.25",
"electron-builder": "^23.3.3",
"electron-packager": "^16.0.0"
},
"dependencies": {
"electron-store": "7.0.2",
"tweakpane": "^3.1.0",
"uil": "^4.3.0"
}
}