skypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacoslinuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmail
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
248 lines
8.0 KiB
248 lines
8.0 KiB
9 years ago
|
{
|
||
7 years ago
|
"name": "Rambox",
|
||
|
"productName": "Rambox",
|
||
3 years ago
|
"version": "0.8.0",
|
||
7 years ago
|
"description": "Free and Open Source messaging and emailing app that combines common web applications into one.",
|
||
7 years ago
|
"main": "electron/main.js",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
7 years ago
|
"url": "https://github.com/ramboxapp/community-edition.git"
|
||
7 years ago
|
},
|
||
|
"bugs": {
|
||
7 years ago
|
"url": "https://github.com/ramboxapp/community-edition/issues"
|
||
7 years ago
|
},
|
||
5 years ago
|
"homepage": "https://rambox.app",
|
||
7 years ago
|
"keywords": [
|
||
|
"Rambox",
|
||
|
"messaging",
|
||
|
"app",
|
||
|
"slack",
|
||
|
"whatsapp",
|
||
|
"facebook",
|
||
|
"messenger",
|
||
|
"telegram",
|
||
|
"google",
|
||
|
"hangouts",
|
||
|
"skype"
|
||
|
],
|
||
5 years ago
|
"author": "Rambox LLC <[email protected]>",
|
||
7 years ago
|
"license": "GPL-3.0",
|
||
9 years ago
|
"scripts": {
|
||
|
"start": "electron electron/main.js",
|
||
|
"start:debug": "electron electron/main.js --enable-logging",
|
||
7 years ago
|
"dev": "electron electron/main.js",
|
||
8 years ago
|
"test": "./node_modules/.bin/mocha test/tests/**/*.spec.js",
|
||
9 years ago
|
"sencha:clean": "rm -rf ./build/production",
|
||
7 years ago
|
"sencha:compile": "sencha app build && npm --prefix ./build/production/Rambox/ install ./build/production/Rambox/",
|
||
|
"sencha:compile:build": "sencha app build",
|
||
9 years ago
|
"clean": "rm -rf ./dist",
|
||
|
"clean:osx": "rm -rf ./dist/Rambox-darwin-*",
|
||
|
"clean:win": "rm -rf ./dist/Rambox-win32-*",
|
||
|
"pack": "npm run pack:osx && npm run pack:win",
|
||
3 years ago
|
"pack:osx": "npm run pack:osx64 && npm run pack:osxarm64",
|
||
|
"pack:osx64": "electron-packager \"./build/production/Rambox/\" \"Rambox\" --out=dist --platform=darwin --arch=x64 --icon=resources/installer/Icon.icns --app-version=0.2.0 --build-version=64-bit --version-string.CompanyName=\"Rambox\" --version-string.ProductName=\"Rambox\" --asar --prune --overwrite",
|
||
|
"pack:osxarm64": "electron-packager \"./build/production/Rambox/\" \"Rambox\" --out=dist --platform=darwin --arch=arm64 --icon=resources/installer/Icon.icns --app-version=0.2.0 --build-version=64-bit --version-string.CompanyName=\"Rambox\" --version-string.ProductName=\"Rambox\" --asar --prune --overwrite",
|
||
9 years ago
|
"pack:win": "npm run pack:win32 && npm run pack:win64",
|
||
7 years ago
|
"pack:win32": "electron-packager \"./build/production/Rambox/\" \"Rambox\" --out=dist --platform=win32 --arch=ia32 --icon=resources/installer/Icon.ico --app-version=0.2.0 --build-version=32-bit --version-string.CompanyName=\"Rambox\" --version-string.ProductName=\"Rambox\" --asar --prune --overwrite",
|
||
|
"pack:win64": "electron-packager \"./build/production/Rambox/\" \"Rambox\" --out=dist --platform=win32 --arch=x64 --icon=resources/installer/Icon.ico --app-version=0.2.0 --build-version=64-bit --version-string.CompanyName=\"Rambox\" --version-string.ProductName=\"Rambox\" --asar --prune --overwrite",
|
||
9 years ago
|
"pack:linux": "npm run pack:linux32 && npm run pack:linux64",
|
||
7 years ago
|
"pack:linux32": "electron-packager \"./build/production/Rambox/\" \"Rambox\" --out=dist --platform=linux --arch=ia32 --icon=resources/installer/Icon.ico --app-version=0.2.0 --build-version=64-bit --version-string.CompanyName=\"Rambox\" --version-string.ProductName=\"Rambox\" --asar --prune --overwrite",
|
||
|
"pack:linux64": "electron-packager \"./build/production/Rambox/\" \"Rambox\" --out=dist --platform=linux --arch=x64 --icon=resources/installer/Icon.ico --app-version=0.2.0 --build-version=64-bit --version-string.CompanyName=\"Rambox\" --version-string.ProductName=\"Rambox\" --asar --prune --overwrite",
|
||
9 years ago
|
"build": "npm run build:linux && npm run build:osx && npm run build:win",
|
||
3 years ago
|
"build:osx": "electron-builder --macos --universal",
|
||
|
"build:osx64": "electron-builder --macos --x64",
|
||
|
"build:osxarm64": "electron-builder --macos --arm64",
|
||
6 years ago
|
"build:linux": "electron-builder --linux --publish=onTagOrDraft",
|
||
|
"build:linux32": "electron-builder --linux --ia32 --publish=onTagOrDraft",
|
||
|
"build:linux64": "electron-builder --linux --x64 --publish=onTagOrDraft",
|
||
|
"build:win": "electron-builder --win --ia32 --x64",
|
||
|
"build:win32": "electron-builder --win --ia32",
|
||
|
"build:win64": "electron-builder --win --x64",
|
||
3 years ago
|
"setup:osx": "npm run sencha:clean && npm run sencha:compile && npm run clean:osx && npm run pack:osx && npm run build:osx && npm run build:osx64 && npm run build:osxarm64",
|
||
9 years ago
|
"setup:win": "npm run sencha:clean && npm run sencha:compile && npm run clean:win && npm run pack:win && npm run build:win",
|
||
|
"all:win": "npm run sencha:clean && npm run sencha:compile && npm run clean:win && npm run pack:win && npm run zip:win32 && npm run zip:win64 && npm run build:win",
|
||
7 years ago
|
"all:linux": "npm run sencha:clean && npm run sencha:compile && npm run build:linux",
|
||
7 years ago
|
"translations:download": "node languages.js download",
|
||
|
"translations:generate": "node languages.js generate"
|
||
9 years ago
|
},
|
||
|
"build": {
|
||
|
"productName": "Rambox",
|
||
7 years ago
|
"appId": "com.grupovrs.ramboxce",
|
||
5 years ago
|
"afterSign": "resources/installer/notarize.js",
|
||
9 years ago
|
"asar": true,
|
||
3 years ago
|
"electronVersion": "13.6.3",
|
||
6 years ago
|
"electronDownload": {
|
||
3 years ago
|
"version": "13.6.3"
|
||
6 years ago
|
},
|
||
9 years ago
|
"mac": {
|
||
8 years ago
|
"category": "public.app-category.productivity",
|
||
3 years ago
|
"artifactName": "Rambox-${version}-mac-${arch}.${ext}",
|
||
9 years ago
|
"target": [
|
||
3 years ago
|
{
|
||
|
"target": "default",
|
||
|
"arch": [
|
||
|
"universal"
|
||
|
]
|
||
|
}
|
||
5 years ago
|
],
|
||
5 years ago
|
"hardenedRuntime": true,
|
||
|
"gatekeeperAssess": false,
|
||
5 years ago
|
"entitlements": "resources/installer/entitlements.mac.plist",
|
||
|
"entitlementsInherit": "resources/installer/entitlements.mac.plist",
|
||
5 years ago
|
"extendInfo": {
|
||
5 years ago
|
"NSMicrophoneUsageDescription": "Apps inside Rambox CE may need access to your microphone. Please, grant access to have a better experience.",
|
||
|
"NSCameraUsageDescription": "Apps inside Rambox CE may need access to your camera. Please, grant access to have a better experience."
|
||
5 years ago
|
}
|
||
9 years ago
|
},
|
||
9 years ago
|
"dmg": {
|
||
9 years ago
|
"title": "Rambox",
|
||
8 years ago
|
"iconSize": 128,
|
||
5 years ago
|
"sign": false,
|
||
9 years ago
|
"contents": [
|
||
|
{
|
||
|
"x": 355,
|
||
|
"y": 125,
|
||
|
"type": "link",
|
||
|
"path": "/Applications"
|
||
|
},
|
||
|
{
|
||
|
"x": 155,
|
||
|
"y": 125,
|
||
|
"type": "file"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"win": {
|
||
5 years ago
|
"publisherName": "Rambox LLC",
|
||
7 years ago
|
"artifactName": "Rambox-${version}-win-${arch}.${ext}",
|
||
9 years ago
|
"target": [
|
||
7 years ago
|
"nsis",
|
||
9 years ago
|
"zip"
|
||
8 years ago
|
]
|
||
9 years ago
|
},
|
||
7 years ago
|
"nsis": {
|
||
|
"deleteAppDataOnUninstall": true,
|
||
|
"oneClick": false,
|
||
|
"perMachine": false,
|
||
|
"runAfterFinish": true
|
||
|
},
|
||
6 years ago
|
"snap": {
|
||
6 years ago
|
"publish": [
|
||
|
{
|
||
|
"provider": "github"
|
||
|
}
|
||
|
],
|
||
|
"plugs": [
|
||
|
"default",
|
||
5 years ago
|
"camera",
|
||
|
"audio-record",
|
||
5 years ago
|
"audio-playback",
|
||
4 years ago
|
"removable-media",
|
||
|
"raw-usb",
|
||
|
"u2f-devices",
|
||
|
"cups-control"
|
||
6 years ago
|
]
|
||
6 years ago
|
},
|
||
9 years ago
|
"linux": {
|
||
4 years ago
|
"icon": "resources/installer/icons",
|
||
6 years ago
|
"category": "Network",
|
||
8 years ago
|
"desktop": {
|
||
|
"Terminal": "false",
|
||
|
"Type": "Application",
|
||
8 years ago
|
"Categories": "GTK;GNOME;Network;Email;Chat;InstantMessaging;"
|
||
8 years ago
|
},
|
||
7 years ago
|
"artifactName": "Rambox-${version}-linux-${arch}.${ext}",
|
||
4 years ago
|
"executableArgs": [
|
||
|
"--no-sandbox"
|
||
|
],
|
||
9 years ago
|
"target": [
|
||
7 years ago
|
{
|
||
|
"target": "snap",
|
||
|
"arch": [
|
||
|
"x64"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"target": "AppImage",
|
||
|
"arch": [
|
||
|
"x64",
|
||
|
"ia32"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"target": "deb",
|
||
|
"arch": [
|
||
|
"x64",
|
||
|
"ia32"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"target": "rpm",
|
||
|
"arch": [
|
||
|
"x64",
|
||
|
"ia32"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"target": "zip",
|
||
|
"arch": [
|
||
|
"x64",
|
||
|
"ia32"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"target": "tar.gz",
|
||
|
"arch": [
|
||
|
"x64",
|
||
|
"ia32"
|
||
|
]
|
||
|
}
|
||
8 years ago
|
]
|
||
8 years ago
|
},
|
||
|
"directories": {
|
||
|
"buildResources": "resources/installer/",
|
||
7 years ago
|
"output": "dist/"
|
||
7 years ago
|
},
|
||
|
"publish": [
|
||
|
{
|
||
|
"provider": "github",
|
||
|
"owner": "ramboxapp",
|
||
|
"repo": "community-edition",
|
||
|
"vPrefixedTagName": false
|
||
|
}
|
||
|
]
|
||
9 years ago
|
},
|
||
|
"devDependencies": {
|
||
5 years ago
|
"asar": "0.12.4",
|
||
8 years ago
|
"chai": "3.5.0",
|
||
|
"crowdin": "1.0.0",
|
||
|
"csvjson": "4.3.3",
|
||
3 years ago
|
"electron": "13.6.3",
|
||
3 years ago
|
"electron-builder": "22.14.13",
|
||
4 years ago
|
"electron-notarize": "1.0.0",
|
||
|
"electron-packager": "15.1.0",
|
||
5 years ago
|
"mocha": "5.2.0",
|
||
3 years ago
|
"spectron": "^15.0.0"
|
||
9 years ago
|
},
|
||
|
"dependencies": {
|
||
8 years ago
|
"@exponent/electron-cookies": "2.0.0",
|
||
8 years ago
|
"auto-launch-patched": "5.0.2",
|
||
5 years ago
|
"crypto": "1.0.1",
|
||
4 years ago
|
"electron-contextmenu-wrapper": "git+https://github.com/ramboxapp/electron-contextmenu-wrapper.git",
|
||
4 years ago
|
"electron-is-dev": "1.2.0",
|
||
|
"electron-log": "4.3.0",
|
||
|
"electron-store": "6.0.1",
|
||
3 years ago
|
"electron-updater": "4.5.2",
|
||
5 years ago
|
"is-online": "8.2.0",
|
||
|
"mime": "2.3.1",
|
||
|
"mousetrap": "1.6.3",
|
||
|
"request": "2.88.0",
|
||
|
"request-promise": "4.2.2",
|
||
8 years ago
|
"rimraf": "2.6.1",
|
||
7 years ago
|
"tmp": "0.0.28"
|
||
5 years ago
|
},
|
||
|
"volta": {
|
||
4 years ago
|
"node": "14.16.1"
|
||
9 years ago
|
}
|
||
9 years ago
|
}
|