linuxwindowsinboxwhatsappicloudtweetdeckhipchattelegramhangoutsslackgmailskypefacebook-workplaceoutlookemailmicrosoft-teamsdiscordmessengercustom-servicesmacos
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.
102 lines
4.2 KiB
102 lines
4.2 KiB
9 years ago
|
{
|
||
5 years ago
|
"name": "hamsket",
|
||
|
"productName": "Hamsket",
|
||
4 years ago
|
"version": "0.6.2",
|
||
5 years ago
|
"description": "Hamsket",
|
||
|
"main": "electron/main.js",
|
||
9 years ago
|
"private": true,
|
||
5 years ago
|
"author": "TheGoddessInari <[email protected]>",
|
||
|
"license": "GPL-3.0",
|
||
|
"engines": {
|
||
|
"node": ">=8.5.0"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/TheGoddessInari/hamsket.git"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/TheGoddessInari/hamsket/issues"
|
||
|
},
|
||
|
"homepage": "https://github.com/TheGoddessInari/hamsket",
|
||
|
"keywords": [
|
||
|
"Hamsket",
|
||
|
"messaging",
|
||
|
"app",
|
||
|
"slack",
|
||
|
"whatsapp",
|
||
|
"facebook",
|
||
|
"messenger",
|
||
|
"telegram",
|
||
|
"google",
|
||
|
"hangouts",
|
||
|
"skype"
|
||
|
],
|
||
9 years ago
|
"scripts": {
|
||
6 years ago
|
"start": "npm run compile && electron build/production/Hamsket",
|
||
|
"debug": "electron --inspect build/production/Hamsket",
|
||
6 years ago
|
"test": "mocha test/tests/**/*.spec.js",
|
||
6 years ago
|
"buildversion": "git show --pretty=\"%h %d %cD\" -s > build/production/Hamsket/BUILDVERSION || node -p -e \"require('./build/production/Hamsket/package.json').version\" > build/production/Hamsket/BUILDVERSION",
|
||
6 years ago
|
"clean": "shx rm -rf ./build/production",
|
||
5 years ago
|
"compile": "sencha app build && shx cp package.json package-lock.json build/production/Hamsket/ && npm run buildversion",
|
||
7 years ago
|
"recompile": "npm run distclean && npm run compile",
|
||
6 years ago
|
"distclean": "shx rm -rf ./dist",
|
||
|
"distclean:win": "shx rm -rf ./dist/win-{ia32-,}unpacked",
|
||
|
"distclean:linux": "shx rm -rf ./dist/linux-{ia32-,}unpacked",
|
||
|
"distclean:osx": "shx rm -rf ./dist/macos-unpacked",
|
||
7 years ago
|
"pack": "electron-builder --dir",
|
||
|
"pack:osx": "electron-builder --macos --dir",
|
||
|
"pack:win": "electron-builder --win --ia32 --x64 --dir",
|
||
|
"pack:win32": "electron-builder --win --ia32 --dir",
|
||
|
"pack:win64": "electron-builder --win --x64 --dir",
|
||
|
"pack:linux": "electron-builder --linux --ia32 --x64 --dir",
|
||
|
"pack:linux32": "electron-builder --linux --ia32 --dir",
|
||
|
"pack:linux64": "electron-builder --linux --x64 --dir",
|
||
|
"pack:all": "electron-builder -mwl --ia32 --x64 --dir",
|
||
|
"build": "electron-builder",
|
||
7 years ago
|
"build:osx": "electron-builder --macos",
|
||
7 years ago
|
"build:linux": "electron-builder --linux --ia32 --x64",
|
||
7 years ago
|
"build:linux32": "electron-builder --linux --ia32",
|
||
|
"build:linux64": "electron-builder --linux --x64",
|
||
|
"build:win": "electron-builder --win --ia32 --x64",
|
||
|
"build:win32": "electron-builder --win --ia32",
|
||
|
"build:win64": "electron-builder --win --x64",
|
||
7 years ago
|
"build:all": "electron-builder -mwl --ia32 --x64",
|
||
7 years ago
|
"setup": "npm run clean && npm run compile && npm run build",
|
||
|
"setup:osx": "npm run clean && npm run compile && npm run build:osx",
|
||
|
"setup:win": "npm run clean && npm run compile && npm run build:win",
|
||
|
"setup:win32": "npm run clean && npm run compile && npm run build:win32",
|
||
|
"setup:win64": "npm run clean && npm run compile && npm run build:win64",
|
||
|
"setup:linux": "npm run clean && npm run compile && npm run build:linux",
|
||
|
"setup:linux32": "npm run clean && npm run compile && npm run build:linux32",
|
||
|
"setup:linux64": "npm run clean && npm run compile && npm run build:linux64",
|
||
|
"repack": "npm run clean && npm run compile && npm run distclean && npm run pack",
|
||
7 years ago
|
"repack:osx": "npm run clean && npm run compile && npm run distclean:osx && npm run pack:osx",
|
||
7 years ago
|
"repack:win": "npm run clean && npm run compile && npm run distclean:win && npm run pack:win",
|
||
|
"repack:win32": "npm run clean && npm run compile && npm run distclean:win && npm run pack:win32",
|
||
|
"repack:win64": "npm run clean && npm run compile && npm run distclean:win && npm run pack:win64",
|
||
|
"repack:linux": "npm run clean && npm run compile && npm run distclean:linux && npm run pack:linux",
|
||
|
"repack:linux32": "npm run clean && npm run compile && npm run distclean:linux && npm run pack:linux32",
|
||
|
"repack:linux64": "npm run clean && npm run compile && npm run distclean:linux && npm run pack:linux64",
|
||
7 years ago
|
"dist": "npm run repack"
|
||
9 years ago
|
},
|
||
5 years ago
|
"dependencies": {
|
||
4 years ago
|
"@electron/remote": "^1.0.2",
|
||
5 years ago
|
"auto-launch": "^5.0.5",
|
||
4 years ago
|
"electron-context-menu": "^2.3.0",
|
||
5 years ago
|
"electron-store": "^5.0.0",
|
||
5 years ago
|
"mime": "^2.4.4",
|
||
|
"tmp": "^0.1.0"
|
||
9 years ago
|
},
|
||
|
"devDependencies": {
|
||
6 years ago
|
"asar": "^2.0.1",
|
||
6 years ago
|
"chai": "^4.2.0",
|
||
6 years ago
|
"crowdin": "^3.4.2",
|
||
7 years ago
|
"csvjson": "^5.1.0",
|
||
4 years ago
|
"electron": "^10.1.7",
|
||
5 years ago
|
"electron-builder": "^22.9.1",
|
||
5 years ago
|
"mocha": "^7.1.1",
|
||
6 years ago
|
"shx": "^0.3.2",
|
||
5 years ago
|
"spectron": "^10.0.1"
|
||
9 years ago
|
}
|
||
9 years ago
|
}
|