This repository has been archived by the owner on Nov 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
59 lines (59 loc) · 2.31 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
{
"name": "google-chat-electron",
"version": "2.20.0",
"description": "Unofficial desktop app for Google Chat.",
"private": true,
"repository": "https://github.com/ankurk91/google-chat-electron",
"homepage": "https://github.com/ankurk91/google-chat-electron",
"author": "ankurk91",
"license": "GNU GPLv3",
"main": "lib/main/index.js",
"scripts": {
"prestart": "npm run ts",
"start": "electron .",
"clean:dist": "rimraf ./dist",
"clean:lib": "rimraf ./lib",
"prets": "npm run clean:lib",
"ts": "tsc",
"prepack:windows": "npm run clean:dist && npm run ts",
"pack:windows": "electron-packager . --platform=win32 --arch=x64 --asar --overwrite --out=./dist/ --icon=./resources/icons/normal/windows.ico",
"build:windows": "node ./windows/installer.js",
"prepack:mac": "npm run clean:dist && npm run ts",
"pack:mac": "electron-packager . --platform=darwin --arch=x64 --asar --overwrite --out=./dist/ --icon=./resources/icons/normal/mac.icns",
"pack:mac-arm": "electron-packager . --platform=darwin --arch=arm64 --asar --overwrite --out=./dist/ --icon=./resources/icons/normal/mac.icns",
"build:mac-zip": "bash ./mac/installer-zip.sh",
"build:mac-arm-zip": "bash ./mac/installer-arm-zip.sh",
"prepack:linux": "npm run clean:dist && npm run ts",
"pack:linux": "electron-packager . --platform=linux --arch=x64 --asar --overwrite --out=./dist/",
"build:deb": "electron-installer-debian --config=./debian/config.json --arch=amd64",
"build:deb-checksum": "cd ./dist/installers && sha512sum *.deb > google-chat-electron-deb-SHA512.txt"
},
"devDependencies": {
"@types/auto-launch": "^5.0.2",
"@types/throttle-debounce": "^5.0.0",
"electron": "^21.3.1",
"electron-packager": "^17.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.3"
},
"dependencies": {
"auto-launch": "^5.0.5",
"electron-context-menu": "^3.6.0",
"electron-log": "^4.4.8",
"electron-store": "^8.1.0",
"electron-unhandled": "^4.0.1",
"electron-update-notifier": "^1.7.0",
"electron-util": "^0.17.2",
"is-online": "^9.0",
"throttle-debounce": "^5.0.0"
},
"optionalDependencies": {
"electron-installer-debian": "^3.1.0"
},
"engineStrict": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.12",
"pnpm": "^7.0.0"
}
}