mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-13 10:58:00 +03:00
463edc2822
Bump electron-installer-snap from 3.0.0 to 3.2.0
138 lines
4.3 KiB
JSON
138 lines
4.3 KiB
JSON
{
|
|
"name": "term",
|
|
"devDependencies": {
|
|
"@fortawesome/fontawesome-free": "^5.8.2",
|
|
"@types/electron-config": "^0.2.1",
|
|
"@types/electron-debug": "^2.1.0",
|
|
"@types/fs-promise": "1.0.3",
|
|
"@types/js-yaml": "^3.12.1",
|
|
"@types/node": "^12.0.2",
|
|
"@types/webpack-env": "1.13.9",
|
|
"app-builder-lib": "^20.41.0",
|
|
"apply-loader": "2.0.0",
|
|
"awesome-typescript-loader": "^5.0.0",
|
|
"core-js": "^3.1.2",
|
|
"cross-env": "5.2.0",
|
|
"css-loader": "2.1.1",
|
|
"electron": "^5.0.2",
|
|
"electron-builder": "^20.40.2",
|
|
"electron-installer-snap": "^3.2.0",
|
|
"electron-rebuild": "^1.8.4",
|
|
"file-loader": "^3.0.1",
|
|
"graceful-fs": "^4.1.15",
|
|
"html-loader": "0.5.5",
|
|
"json-loader": "0.5.7",
|
|
"node-abi": "^2.8.0",
|
|
"node-gyp": "^4.0.0",
|
|
"node-sass": "^4.12.0",
|
|
"npmlog": "4.1.2",
|
|
"npx": "^10.2.0",
|
|
"pug": "^2.0.3",
|
|
"pug-html-loader": "1.1.5",
|
|
"pug-lint": "^2.5.0",
|
|
"pug-loader": "^2.4.0",
|
|
"pug-static-loader": "2.0.0",
|
|
"raven-js": "3.27.1",
|
|
"raw-loader": "2.0.0",
|
|
"sass-loader": "^7.0.1",
|
|
"shelljs": "0.8.3",
|
|
"source-code-pro": "^2.30.1",
|
|
"source-sans-pro": "2.45.0",
|
|
"style-loader": "^0.23.1",
|
|
"svg-inline-loader": "^0.8.0",
|
|
"to-string-loader": "1.1.5",
|
|
"tslint": "^5.16.0",
|
|
"tslint-config-standard": "^8.0.1",
|
|
"tslint-eslint-rules": "^5.4.0",
|
|
"typedoc": "^0.14.2",
|
|
"typescript": "^3.4.5",
|
|
"url-loader": "^1.1.1",
|
|
"val-loader": "1.1.1",
|
|
"webpack": "^4.32.2",
|
|
"webpack-cli": "^3.3.2",
|
|
"yaml-loader": "0.5.0"
|
|
},
|
|
"resolutions": {
|
|
"*/node-abi": "^2.8.0"
|
|
},
|
|
"build": {
|
|
"appId": "org.terminus",
|
|
"productName": "Terminus",
|
|
"compression": "normal",
|
|
"files": [
|
|
"**/*",
|
|
"dist"
|
|
],
|
|
"extraResources": [
|
|
"builtin-plugins",
|
|
"extras"
|
|
],
|
|
"win": {
|
|
"icon": "./build/windows/icon.ico",
|
|
"artifactName": "terminus-${version}-setup.exe"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"artifactName": "terminus-${version}-setup.${ext}",
|
|
"installerIcon": "./build/windows/icon.ico"
|
|
},
|
|
"publish": [
|
|
{
|
|
"provider": "bintray",
|
|
"token": "d993c4faa708a4cba84fa3a8e822457e7298d75c"
|
|
},
|
|
{
|
|
"provider": "github"
|
|
}
|
|
],
|
|
"portable": {
|
|
"artifactName": "terminus-${version}-portable.exe"
|
|
},
|
|
"mac": {
|
|
"category": "public.app-category.video",
|
|
"icon": "./build/mac/icon.icns",
|
|
"artifactName": "terminus-${version}-macos.${ext}",
|
|
"extendInfo": {
|
|
"NSRequiresAquaSystemAppearance": false
|
|
}
|
|
},
|
|
"dmg": {
|
|
"artifactName": "terminus-${version}-macos.dmg"
|
|
},
|
|
"linux": {
|
|
"category": "Utilities",
|
|
"icon": "./build/icons",
|
|
"artifactName": "terminus-${version}-linux.${ext}"
|
|
},
|
|
"deb": {
|
|
"depends": [
|
|
"screen",
|
|
"gconf2",
|
|
"gconf-service",
|
|
"libnotify4",
|
|
"libappindicator1",
|
|
"libxtst6",
|
|
"libnss3",
|
|
"tmux"
|
|
],
|
|
"afterInstall": "build/linux/after-install.tpl"
|
|
},
|
|
"rpm": {
|
|
"depends": [
|
|
"screen",
|
|
"gnome-python2-gnomekeyring"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "webpack --color --config app/webpack.main.config.js && webpack --color --config app/webpack.config.js && webpack --color --config terminus-core/webpack.config.js && webpack --color --config terminus-settings/webpack.config.js && webpack --color --config terminus-terminal/webpack.config.js && webpack --color --config terminus-settings/webpack.config.js && webpack --color --config terminus-plugin-manager/webpack.config.js && webpack --color --config terminus-community-color-schemes/webpack.config.js && webpack --color --config terminus-ssh/webpack.config.js",
|
|
"watch": "cross-env TERMINUS_DEV=1 webpack --progress --color --watch",
|
|
"start": "cross-env TERMINUS_DEV=1 electron app --debug",
|
|
"prod": "cross-env TERMINUS_DEV=1 electron app",
|
|
"docs": "typedoc --out docs/api terminus-core/src && typedoc --out docs/api/terminal terminus-terminal/src && typedoc --out docs/api/settings terminus-settings/src",
|
|
"lint": "tslint -c tslint.json -t stylish terminus-*/src/**/*.ts terminus-*/src/*.ts app/src/*.ts",
|
|
"postinstall": "node ./scripts/install-deps.js"
|
|
},
|
|
"repository": "eugeny/terminus"
|
|
}
|