1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-11 13:13:59 +03:00
tabby/package.json

139 lines
4.3 KiB
JSON
Raw Normal View History

2016-12-23 12:06:53 +03:00
{
"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",
2018-05-20 17:12:05 +03:00
"awesome-typescript-loader": "^5.0.0",
2019-05-24 21:30:42 +03:00
"core-js": "^3.1.2",
"cross-env": "5.2.0",
2017-06-21 00:28:58 +03:00
"css-loader": "0.28.0",
"electron": "^5.0.2",
"electron-builder": "^20.40.2",
"electron-installer-snap": "^3.0.0",
2019-05-04 19:59:50 +03:00
"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",
2019-05-04 19:59:50 +03:00
"node-abi": "^2.8.0",
2018-12-30 19:44:52 +03:00
"node-gyp": "^3.8.0",
2019-05-04 19:59:50 +03:00
"node-sass": "^4.12.0",
"npmlog": "4.1.2",
"npx": "^10.2.0",
2018-05-20 17:12:05 +03:00
"pug": "^2.0.3",
"pug-html-loader": "1.1.5",
2018-08-09 16:13:31 +03:00
"pug-lint": "^2.5.0",
2018-05-20 17:12:05 +03:00
"pug-loader": "^2.4.0",
2016-12-23 12:06:53 +03:00
"pug-static-loader": "0.0.1",
"raven-js": "3.27.1",
2017-06-21 00:28:58 +03:00
"raw-loader": "0.5.1",
2018-05-20 17:12:05 +03:00
"sass-loader": "^7.0.1",
"shelljs": "0.8.3",
2018-10-12 14:49:59 +03:00
"source-code-pro": "^2.30.1",
"source-sans-pro": "2.45.0",
2019-02-20 03:57:38 +03:00
"style-loader": "^0.23.1",
2018-08-09 16:13:31 +03:00
"svg-inline-loader": "^0.8.0",
2017-06-21 00:28:58 +03:00
"to-string-loader": "1.1.5",
"tslint": "^5.16.0",
2018-12-22 01:18:22 +03:00
"tslint-config-standard": "^8.0.1",
"tslint-eslint-rules": "^5.4.0",
2019-03-07 03:51:15 +03:00
"typedoc": "^0.14.2",
"typescript": "^3.4.5",
"url-loader": "^1.1.1",
2017-06-21 00:28:58 +03:00
"val-loader": "0.5.0",
"webpack": "^4.32.2",
2019-05-17 21:45:10 +03:00
"webpack-cli": "^3.3.2",
"yaml-loader": "0.5.0",
2018-10-23 13:04:32 +03:00
"yarn": "^1.10.1"
2016-12-23 12:06:53 +03:00
},
2018-12-30 17:54:17 +03:00
"resolutions": {
2019-05-04 19:59:50 +03:00
"*/node-abi": "^2.8.0"
2018-12-30 17:54:17 +03:00
},
2016-12-23 12:06:53 +03:00
"build": {
2017-05-01 01:01:12 +03:00
"appId": "org.terminus",
"productName": "Terminus",
2016-12-23 12:06:53 +03:00
"compression": "normal",
2018-08-10 12:01:13 +03:00
"files": [
"**/*",
"dist"
],
2017-04-30 01:25:01 +03:00
"extraResources": [
2017-05-11 23:56:48 +03:00
"builtin-plugins",
2018-09-23 16:38:57 +03:00
"extras"
2017-04-30 01:25:01 +03:00
],
2016-12-23 12:06:53 +03:00
"win": {
2017-09-09 12:43:21 +03:00
"icon": "./build/windows/icon.ico",
2018-09-22 14:14:51 +03:00
"artifactName": "terminus-${version}-setup.exe"
2016-12-23 12:06:53 +03:00
},
"nsis": {
"oneClick": false,
"artifactName": "terminus-${version}-setup.${ext}",
"installerIcon": "./build/windows/icon.ico"
2018-09-22 14:14:51 +03:00
},
"publish": [
{
"provider": "bintray",
"token": "d993c4faa708a4cba84fa3a8e822457e7298d75c"
},
{
"provider": "github"
}
],
2018-09-22 14:14:51 +03:00
"portable": {
"artifactName": "terminus-${version}-portable.exe"
2017-05-01 21:42:11 +03:00
},
2016-12-23 12:06:53 +03:00
"mac": {
"category": "public.app-category.video",
"icon": "./build/mac/icon.icns",
2019-01-03 13:01:15 +03:00
"artifactName": "terminus-${version}-macos.${ext}",
2018-08-08 10:16:56 +03:00
"extendInfo": {
"NSRequiresAquaSystemAppearance": false
}
2016-12-23 12:06:53 +03:00
},
2017-09-09 12:33:06 +03:00
"dmg": {
2018-09-22 14:14:51 +03:00
"artifactName": "terminus-${version}-macos.dmg"
2017-09-09 12:33:06 +03:00
},
2016-12-23 12:06:53 +03:00
"linux": {
2017-05-01 14:35:26 +03:00
"category": "Utilities",
2017-09-09 12:33:06 +03:00
"icon": "./build/icons",
"artifactName": "terminus-${version}-linux.${ext}"
},
"deb": {
2017-07-03 18:50:00 +03:00
"depends": [
"screen",
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
2017-08-05 11:15:07 +03:00
"libnss3",
"tmux"
],
"afterInstall": "build/linux/after-install.tpl"
},
"rpm": {
2017-07-03 18:50:00 +03:00
"depends": [
"screen",
"gnome-python2-gnomekeyring"
2018-09-22 14:14:51 +03:00
]
2016-12-23 12:06:53 +03:00
}
},
"scripts": {
2018-08-27 10:40:43 +03:00
"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",
2019-02-10 00:10:42 +03:00
"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",
2019-03-07 20:04:03 +03:00
"docs": "typedoc --out docs/api terminus-core/src && typedoc --out docs/api/terminal terminus-terminal/src && typedoc --out docs/api/settings terminus-settings/src",
2017-05-01 14:35:26 +03:00
"lint": "tslint -c tslint.json -t stylish terminus-*/src/**/*.ts terminus-*/src/*.ts app/src/*.ts",
"postinstall": "node ./scripts/install-deps.js"
2017-06-10 01:29:16 +03:00
},
2017-07-01 01:54:55 +03:00
"repository": "eugeny/terminus"
2016-12-23 12:06:53 +03:00
}