Форк Rambox
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.

131 lines
4.7 KiB

{
"private": true,
"scripts": {
"start": "electron electron/main.js",
"start:debug": "electron electron/main.js --enable-logging",
"test": "./node_modules/.bin/mocha test/tests/**/*.spec.js",
"sencha:clean": "rimraf ./build/production",
"sencha:compile": "sencha app build && cpy app/package.json build/production/Rambox/ && npm --prefix ./build/production/Rambox/ install ./build/production/Rambox/",
"sencha:recompile": "npm run sencha:clean && npm run sencha:compile",
"clean": "rimraf ./dist",
"clean:win": "rimraf ./dist/win-{ia32-,}unpacked",
"clean:linux": "rimraf ./dist/linux-{ia32-,}unpacked",
"clean:osx": "rimraf ./dist/macos-unpacked",
"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",
"build:osx": "electron-builder --macos",
"build:linux": "electron-builder --linux --ia32 --x64",
"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",
"build:all": "electron-builder -mwl --ia32 --x64",
"setup": "npm run sencha:clean && npm run sencha:compile && npm run build",
"setup:osx": "npm run sencha:clean && npm run sencha:compile && npm run build:osx",
"setup:win": "npm run sencha:clean && npm run sencha:compile && npm run build:win",
"setup:win32": "npm run sencha:clean && npm run sencha:compile && npm run build:win32",
"setup:win64": "npm run sencha:clean && npm run sencha:compile && npm run build:win64",
"setup:linux": "npm run sencha:clean && npm run sencha:compile && npm run build:linux",
"setup:linux32": "npm run sencha:clean && npm run sencha:compile && npm run build:linux32",
"setup:linux64": "npm run sencha:clean && npm run sencha:compile && npm run build:linux64",
"repack": "npm run sencha:clean && npm run sencha:compile && npm run clean && npm run pack",
"repack:osx": "npm run sencha:clean && npm run sencha:compile && npm run clean:osx && npm run pack:macos",
"repack:win": "npm run sencha:clean && npm run sencha:compile && npm run clean:win && npm run pack:win",
"repack:win32": "npm run sencha:clean && npm run sencha:compile && npm run clean:win && npm run pack:win32",
"repack:win64": "npm run sencha:clean && npm run sencha:compile && npm run clean:win && npm run pack:win64",
"repack:linux": "npm run sencha:clean && npm run sencha:compile && npm run clean:linux && npm run pack:linux",
"repack:linux32": "npm run sencha:clean && npm run sencha:compile && npm run clean:linux && npm run pack:linux32",
"repack:linux64": "npm run sencha:clean && npm run sencha:compile && npm run clean:linux && npm run pack:linux64",
"dist": "npm run repack"
},
"build": {
"productName": "Rambox",
"appId": "com.thegoddessinari.rambox",
"asar": true,
"publish": null,
"mac": {
"category": "public.app-category.productivity",
"target": [
"default"
]
},
9 years ago
"dmg": {
"title": "Rambox",
"iconSize": 128,
"contents": [
{
"x": 355,
"y": 125,
"type": "link",
"path": "/Applications"
},
{
"x": 155,
"y": 125,
"type": "file"
}
]
},
"squirrelWindows": {
"iconUrl": "https://raw.githubusercontent.com/TheGoddessInari/rambox/master/resources/Icon.ico"
},
"win": {
"target": [
"squirrel"
]
},
"linux": {
"category": "Office",
"desktop": {
"Terminal": "false",
"Type": "Application",
"Categories": "GTK;GNOME;Utility;Office;Email;Chat;InstantMessaging;"
},
"target": [
"tar.gz",
9 years ago
"deb",
"rpm",
"AppImage"
]
},
"directories": {
"buildResources": "resources/installer/",
"output": "dist/",
"app": "build/production/Rambox/"
}
},
"devDependencies": {
"asar": "^0.12.4",
"chai": "3.5.0",
"cpy-cli": "2.0.0",
"crowdin": "1.0.0",
"csvjson": "4.3.3",
"electron-builder": "^20.26.0",
"electron-builder-squirrel-windows": "^20.26.0",
"electron-squirrel-startup": "^1.0.0",
"mocha": "^5.2.0",
"spectron": "^3.8.0"
},
"dependencies": {
"auth0-js": "^8.12.3",
"auth0-lock": "^10.24.3",
"auto-launch-patched": "5.0.2",
"electron": "^2.0.5",
"electron-store": "2.0.0",
"electron-context-menu": "0.9.1",
"electron-is-dev": "^0.3.0",
"mime": "^1.6.0",
"rimraf": "2.6.1",
"tmp": "0.0.28"
}
}