-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1008 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 1008 Bytes
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
{
"name": "xtool-connect",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/1RandomDev/xTool-Connect",
"keywords": [],
"author": "1RandomDev",
"license": "GPL-3.0",
"main": "main/app.js",
"scripts": {
"start": "DEBUG_MODE=true electron main/app.js",
"dist": "electron-builder --win --linux"
},
"build": {
"productName": "xTool Connect",
"appId": "xtool-connect",
"files": [
"icon.png",
"main/**/*",
"renderer/**/*"
],
"linux": {
"category": "Utility",
"target": [
"AppImage",
"tar.gz"
],
"artifactName": "${productName}-${version}-linux.${ext}"
},
"win": {
"target": [
"nsis",
"zip"
],
"artifactName": "${productName}-${version}-windows.${ext}"
},
"nsis": {
"oneClick": false
}
},
"dependencies": {
"ws": "^8.19.0"
},
"devDependencies": {
"electron": "^40.4.1",
"electron-builder": "^26.7.0"
}
}