This repository was archived by the owner on May 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.25 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.25 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
{
"name": "electrocomm",
"productName": "ElectroComm",
"version": "1.0.0",
"description": "A minimal Electron webpage communication assimilator",
"main": "main.js",
"scripts": {
"start": "electron .",
"build-mac": "electron-packager . --overwrite --asar --platform=darwin --arch=x64 --icon=res/icon.icns --prune=true --out=release-builds",
"build-linux": "electron-packager . --overwrite --asar --platform=linux --arch=x64 --icon=res/icon.png --prune=true --out=release-builds",
"build-windows": "electron-packager . --overwrite --asar --platform=win32 --arch=x64 --icon=res/icon.ico --prune=true --out=release-builds",
"build-all": "npm run build-linux && npm run build-windows && npm run build-mac",
"zip-all": "cd release-builds && rm *.zip && for f in $(ls -l --color=none | grep ^d | tr -s ' ' | cut -d' ' -f9); do zip -r9 $f.zip $f; done"
},
"repository": "https://deviat.net/repos/electrocomm",
"keywords": [
"Electron",
"communication"
],
"author": "Brent Krone-Schmidt",
"license": "CC0-1.0",
"devDependencies": {
"electron-packager": "^17.1.1"
},
"dependencies": {
"@electron/remote": "^2.0.8",
"dragula": "^3.7.3",
"electron": "^29.0.0",
"electron-tabs": "^1.0.1",
"normalize-url": "^4.5.1",
"sortablejs": "^1.15.0"
}
}