-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
37 lines (37 loc) · 2.35 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
{
"name": "google-messages-for-desktop",
"version": "1.4.2",
"description": "A \"native-like\" desktop app for Google Messages. ",
"main": "index.js",
"scripts": {
"mac": "npx nativefier --conceal --platform \"mac\" --icon google-messages-logo.png --name \"Google Messages\" \"https://messages.google.com/web\" --honest --disable-dev-tools --single-instance dist/Mac",
"windows": "npx nativefier --platform \"windows\" --icon google-messages-logo.png --name \"Google Messages\" \"https://messages.google.com/web\" --honest --disable-dev-tools --single-instance dist/Windows",
"windows:tray": "npx nativefier --platform \"windows\" --icon google-messages-logo.png --name \"Google Messages\" \"https://messages.google.com/web\" --honest --disable-dev-tools --single-instance --tray dist/Windows_Tray",
"linux": "npx nativefier --platform \"linux\" --icon google-messages-logo.png --name \"Google Messages\" \"https://messages.google.com/web\" --honest --disable-dev-tools --single-instance dist/Linux",
"package:mac": "cd dist/Mac; zip -r ../google-messages-mac_v$(npm -s run env echo '$npm_package_version').zip *",
"package:linux": "cd dist/Linux; zip -r ../google-messages-linux_v$(npm -s run env echo '$npm_package_version').zip *",
"package:windows": "cd dist/Windows; zip -r ../google-messages-windows_v$(npm -s run env echo '$npm_package_version').zip *",
"package:windows_tray": "cd dist/Windows_Tray; zip -r ../google-messages-windows-tray_v$(npm -s run env echo '$npm_package_version').zip *",
"clean:dist": "rm -rf dist",
"clean:packages": "rm -rf Windows/*.zip Mac/*.zip Linux/*.zip",
"build:all": "npm run clean:dist && npm run mac && npm run windows && npm run windows:tray && npm run linux",
"package:all": "npm run clean:packages && npm run package:mac && npm run package:linux && npm run package:windows && npm run package:windows_tray",
"release": "npm run build:all && npm run package:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kelyvin/Google-Messages-For-Desktop.git"
},
"engines": {
"node": ">=12.0.0"
},
"author": "Kelvin Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/kelyvin/Google-Messages-For-Desktop/issues"
},
"homepage": "https://github.com/kelyvin/Google-Messages-For-Desktop#readme",
"dependencies": {
"nativefier": "^49.0.1"
}
}