-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.35 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
{
"name": "multi-browser",
"version": "1.0.13",
"description": "Electron desktop app for running multiple fully-isolated browser sessions side by side, with an in-page AI assistant",
"main": "main.js",
"desktopName": "multi-browser.desktop",
"scripts": {
"start": "electron --no-sandbox .",
"start:sandbox": "electron .",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux",
"build:deb": "electron-builder --linux deb",
"build:rpm": "electron-builder --linux rpm",
"build:all": "electron-builder --linux",
"build-win": "electron-builder --win",
"dev": "electron --no-sandbox . --dev",
"dev:sandbox": "electron . --dev"
},
"keywords": [
"browser",
"multi-session",
"session-isolation",
"electron",
"whatsapp",
"desktop"
],
"author": "Guilherme Peralta",
"license": "MIT",
"devDependencies": {
"electron": "^41.1.1",
"electron-builder": "^26.8.1"
},
"dependencies": {
"node-json-db": "^2.3.0"
},
"build": {
"appId": "com.multibrowser.app",
"productName": "Multi Browser",
"directories": {
"output": "dist"
},
"protocols": [
{
"name": "WhatsApp deep link",
"schemes": [
"whatsapp"
]
}
],
"files": [
"**/*",
"!node_modules/**/*",
"node_modules/node-json-db/**/*",
"node_modules/rwlock/**/*"
],
"extraResources": [
{
"from": "assets/icon.png",
"to": "assets/icon.png"
},
{
"from": "assets/icon-512x512.png",
"to": "assets/icon-512x512.png"
}
],
"win": {
"target": "nsis",
"icon": "assets/icon.ico"
},
"mac": {
"target": "dmg",
"icon": "assets/icon.png",
"category": "public.app-category.utilities"
},
"linux": {
"target": [
"deb",
"rpm",
"AppImage"
],
"icon": "build/icons",
"syncDesktopName": true,
"category": "Network",
"maintainer": "Guilherme Peralta"
}
},
"repository": {
"type": "git",
"url": "https://github.com/guiperalta/multi-browser.git"
},
"homepage": "https://github.com/guiperalta/multi-browser",
"bugs": {
"url": "https://github.com/guiperalta/multi-browser/issues"
}
}