mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-10 12:16:34 +03:00
106 lines
3.2 KiB
JSON
106 lines
3.2 KiB
JSON
{
|
|
"name": "term",
|
|
"devDependencies": {
|
|
"@types/fs-promise": "1.0.1",
|
|
"@types/node": "7.0.5",
|
|
"@types/webpack-env": "1.13.0",
|
|
"apply-loader": "0.1.0",
|
|
"awesome-typescript-loader": "3.1.2",
|
|
"core-js": "2.4.1",
|
|
"cross-env": "4.0.0",
|
|
"css-loader": "0.28.0",
|
|
"electron": "1.6.11",
|
|
"electron-builder": "17.1.1",
|
|
"electron-builder-squirrel-windows": "17.0.1",
|
|
"electron-rebuild": "1.5.11",
|
|
"file-loader": "0.9.0",
|
|
"font-awesome": "4.7.0",
|
|
"html-loader": "0.4.4",
|
|
"json-loader": "0.5.4",
|
|
"less": "2.7.1",
|
|
"less-loader": "2.2.3",
|
|
"node-abi": "2.0.3",
|
|
"node-gyp": "^3.6.2",
|
|
"node-sass": "^4.5.3",
|
|
"npmlog": "4.1.0",
|
|
"pug": "2.0.0-beta11",
|
|
"pug-html-loader": "1.0.9",
|
|
"pug-loader": "2.3.0",
|
|
"pug-static-loader": "0.0.1",
|
|
"raven-js": "3.16.0",
|
|
"raw-loader": "0.5.1",
|
|
"sass-loader": "6.0.3",
|
|
"shelljs": "0.7.7",
|
|
"source-sans-pro": "2.0.10",
|
|
"style-loader": "0.13.1",
|
|
"to-string-loader": "1.1.5",
|
|
"tslint": "5.1.0",
|
|
"tslint-config-standard": "5.0.2",
|
|
"tslint-eslint-rules": "4.0.0",
|
|
"typescript": "2.2.2",
|
|
"url-loader": "0.5.7",
|
|
"val-loader": "0.5.0",
|
|
"webpack": "^3.0.0",
|
|
"yaml-loader": "0.4.0"
|
|
},
|
|
"build": {
|
|
"appId": "org.terminus",
|
|
"productName": "Terminus",
|
|
"compression": "normal",
|
|
"extraResources": [
|
|
"builtin-plugins",
|
|
"clink"
|
|
],
|
|
"win": {
|
|
"icon": "./build/windows/icon.ico",
|
|
"publish": ["github"]
|
|
},
|
|
"squirrelWindows": {
|
|
"iconUrl": "https://github.com/Eugeny/terminus/raw/master/build/windows/icon.ico",
|
|
"artifactName": "terminus-${version}-${os}-${arch}.exe"
|
|
},
|
|
"mac": {
|
|
"category": "public.app-category.video",
|
|
"icon": "./build/mac/icon.icns",
|
|
"identity": null,
|
|
"publish": ["github"]
|
|
},
|
|
"dmg": {
|
|
"artifactName": "terminus-${version}-${os}-${arch}.dmg"
|
|
},
|
|
"linux": {
|
|
"category": "Utilities",
|
|
"icon": "./build/icons",
|
|
"publish": ["github"]
|
|
},
|
|
"deb": {
|
|
"depends": [
|
|
"screen",
|
|
"gconf2",
|
|
"gconf-service",
|
|
"libnotify4",
|
|
"libappindicator1",
|
|
"libxtst6",
|
|
"libnss3",
|
|
"tmux"
|
|
],
|
|
"artifactName": "terminus-${version}-${os}-${arch}.deb"
|
|
},
|
|
"rpm": {
|
|
"depends": [
|
|
"screen"
|
|
],
|
|
"artifactName": "terminus-${version}-${os}-${arch}.rpm"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "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",
|
|
"watch": "webpack --progress --color --watch",
|
|
"start": "cross-env DEV=1 electron --js-flags='--ignition' app --debug",
|
|
"prod": "cross-env DEV=1 electron --js-flags='--ignition' app",
|
|
"lint": "tslint -c tslint.json -t stylish terminus-*/src/**/*.ts terminus-*/src/*.ts app/src/*.ts",
|
|
"postinstall": "install-app-deps"
|
|
},
|
|
"repository": "eugeny/terminus"
|
|
}
|