forked from chsami/Microbot-Launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.16 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.16 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "microbot-launcher",
"version": "3.2.8",
"description": "Launcher for the microbot client",
"main": "main.js",
"scripts": {
"dev": "cross-env DEBUG=true electron .",
"dev:mock": "cross-env DEBUG=true MOCK_AUTH=1 MOCK_USERS='demo@microbot.com:DemoPassword123,test@example.com:TestPassword123' electron .",
"start": "electron-forge start",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"release": "electron-builder --publish always",
"linux": "electron-builder --linux",
"mac": "electron-builder --mac"
},
"author": "Mocrosoft",
"license": "ISC",
"devDependencies": {
"@electron-forge/cli": "^7.8.1",
"@electron-forge/maker-deb": "^7.8.1",
"@electron-forge/maker-rpm": "^7.8.1",
"@electron-forge/maker-squirrel": "^7.8.1",
"@electron-forge/maker-zip": "^7.8.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.8.1",
"@electron-forge/plugin-fuses": "^7.8.1",
"@electron/fuses": "^1.8.0",
"cross-env": "^7.0.3",
"electron": "^33.2.0",
"electron-builder": "^26.0.12",
"jest": "^30.2.0"
},
"dependencies": {
"adm-zip": "^0.5.15",
"applicationinsights": "^2.9.6",
"axios": "^1.7.2",
"cheerio": "1.1.2",
"detect-browsers": "^6.1.0",
"electron-log": "^5.4.1",
"electron-updater": "^6.1.8",
"patchright": "^1.52.5",
"playwright": "^1.54.1",
"update-electron-app": "^3.0.0"
},
"build": {
"asar": "true",
"appId": "com.microbot.launcher",
"productName": "Microbot Launcher",
"files": [
"main.js",
"renderer.js",
"preload.js",
"package.json",
"!**/*.map",
"images/**",
"libs/**",
"index.html",
"css/**",
"build/READ THIS BEFORE INSTALL.html"
],
"directories": {
"buildResources": "build"
},
"win": {
"target": "nsis",
"icon": "images/microbot_transparent.ico"
},
"mac": {
"category": "public.app-category.utilities",
"target": "default",
"icon": "images/microbot_transparent.icns"
},
"dmg": {
"icon": "images/microbot_transparent.icns",
"background": "images/dmg-background.png",
"title": "${productName} Installer",
"iconSize": 108,
"contents": [
{
"x": 530,
"y": 192,
"type": "file",
"path": "./build/READ THIS BEFORE INSTALL.html"
},
{
"x": 200,
"y": 400,
"type": "file"
},
{
"x": 730,
"y": 495,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"snap"
],
"icon": "images/microbot_transparent.png",
"category": "Game"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Microbot Launcher"
},
"publish": {
"provider": "generic",
"url": "https://files.microbot.cloud/releases/microbot-launcher/"
}
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}