-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 3.03 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
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
{
"name": "Ducopanel",
"version": "1.274.0",
"description": "Duinocoin minerpanel and dashboard",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"clean": "rimraf dist",
"exe32": "electron-packager . Ducopanel --platform win32 --arch ia32 --ignore \"(dist|node_modules/electron.*)\" --icon resources/Icon.ico",
"exe64": "electron-packager . Ducopanel --platform win32 --arch x64 --ignore \"(dist|node_modules/electron.*)\" --icon resources/Icon.ico",
"set32": "electron-installer-windows --src out/ducopanel-win32-ia32/ --dest dist/installers/ia32/ --config config.json",
"set64": "electron-installer-windows --src out/ducopanel-win32-x64/ --dest dist/installers/ --config config.json",
"package-linux": "electron-installer-debian --src out/Ducopanel-linux-x64/ --dest dist/installers/ --arch amd64",
"package-linux-arm": "electron-installer-debian --src out/Ducopanel-linux-arm64/ --dest dist/installers/ --arch arm64",
"build": "npm run clean && npm run make && npm run set64",
"buildLinux": "npm run clean && npm run make && npm run package-linux",
"buildLinuxArm": "npm run clean && npm run make && npm run package-linux-arm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ponsato/ducopanel.git"
},
"keywords": [
"duco"
],
"author": "ponsato",
"license": "MIT",
"bugs": {
"url": "https://github.com/ponsato/ducopanel/issues"
},
"homepage": "https://github.com/ponsato/ducopanel#readme",
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.61",
"@electron-forge/shared-types": "6.0.0-beta.61",
"@electron-forge/maker-base": "6.0.0-beta.61",
"@electron-forge/maker-deb": "^6.0.0-beta.61",
"@electron-forge/maker-rpm": "^6.0.0-beta.61",
"@electron-forge/maker-squirrel": "^6.0.0-beta.61",
"@electron-forge/maker-zip": "^6.0.0-beta.61",
"electron": "^13.6.2",
"electron-installer-debian": "^3.1.0",
"electron-installer-windows": "^3.0.0",
"electron-packager": "^15.4.0",
"electron-rebuild": "^2.3.4"
},
"dependencies": {
"bulma-switch": "^2.0.0",
"electron-squirrel-startup": "^1.0.0",
"fs-extra": "^10.0.0",
"python-shell": "^3.0.1",
"serialport": "^9.2.7",
"simple-git-for-electron": "^1.113.2",
"upath": "^2.0.1"
},
"build": {
"productName": "Ducopanel",
"appId": "com.experiment.ducopanel",
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis",
"msi"
],
"asar": false
},
"directories": {
"buildResources": "build",
"app": "build",
"output": "release"
},
"files": [
"**/*",
"build/icon.*"
]
},
"config": {
"forge": "./forge.config.js"
}
}