1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-19 08:57:34 +03:00
tabby/package.json

78 lines
3.1 KiB
JSON
Raw Normal View History

2016-12-23 12:06:53 +03:00
{
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"@sentry/cli": "^1.61.0",
"@sentry/electron": "^2.0.4",
"@types/electron-config": "^3.2.2",
"@types/electron-debug": "^2.1.0",
"@types/fs-extra": "^8.1.1",
"@types/js-yaml": "^3.12.5",
"@types/node": "14.14.14",
"@types/webpack-env": "^1.16.0",
2020-12-24 16:03:14 +03:00
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"apply-loader": "2.0.0",
"awesome-typescript-loader": "^5.2.1",
"core-js": "^3.8.1",
"cross-env": "7.0.2",
"css-loader": "3.4.2",
"electron": "^11.1.1",
"electron-builder": "22.10.3",
2019-11-30 23:09:42 +03:00
"electron-download": "^4.1.1",
"electron-installer-snap": "^5.1.0",
"electron-notarize": "^1.0.0",
"electron-rebuild": "^2.3.4",
2020-12-24 16:03:14 +03:00
"eslint": "^7.6.0",
"eslint-plugin-import": "^2.21.1",
"file-loader": "^5.1.0",
"graceful-fs": "^4.2.4",
"html-loader": "0.5.5",
"json-loader": "0.5.7",
2020-12-24 16:03:14 +03:00
"node-abi": "^2.19.3",
"node-gyp": "^7.1.2",
"node-sass": "^5.0.0",
"npmlog": "4.1.2",
"npx": "^10.2.2",
"pug": "^2.0.4",
"pug-html-loader": "1.1.5",
"pug-lint": "^2.6.0",
2018-05-20 17:12:05 +03:00
"pug-loader": "^2.4.0",
"pug-static-loader": "2.0.0",
"raw-loader": "4.0.1",
"sass-loader": "^10.1.0",
"shelljs": "0.8.4",
"source-code-pro": "^2.30.2",
"source-sans-pro": "3.6.0",
"ssh2-streams": "^0.4.10",
"style-loader": "^1.3.0",
"svg-inline-loader": "^0.8.2",
"to-string-loader": "1.1.6",
"tslib": "^2.0.3",
"typedoc": "^0.18.0",
"typescript": "^3.9.7",
"url-loader": "^3.0.0",
"val-loader": "2.1.1",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"yaml-loader": "0.6.0"
2016-12-23 12:06:53 +03:00
},
2018-12-30 17:54:17 +03:00
"resolutions": {
2020-12-24 18:04:15 +03:00
"*/node-abi": "^2.19.3",
"**/graceful-fs": "^4.2.4"
2018-12-30 17:54:17 +03:00
},
2016-12-23 12:06:53 +03:00
"scripts": {
"build": "npm run build:typings && 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-plugin-manager/webpack.config.js && webpack --color --config terminus-community-color-schemes/webpack.config.js && webpack --color --config terminus-ssh/webpack.config.js && webpack --color --config terminus-serial/webpack.config.js",
2020-03-01 18:40:26 +03:00
"build:typings": "node scripts/build-typings.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",
2020-08-07 13:25:02 +03:00
"start:prod": "electron app --debug",
2019-02-10 00:10:42 +03:00
"prod": "cross-env TERMINUS_DEV=1 electron app",
2019-06-07 18:17:54 +03:00
"docs": "typedoc --out docs/api terminus-core/src && typedoc --out docs/api/terminal --tsconfig terminus-terminal/tsconfig.typings.json terminus-terminal/src && typedoc --out docs/api/settings --tsconfig terminus-settings/tsconfig.typings.json terminus-settings/src",
2020-02-05 14:53:04 +03:00
"lint": "eslint --ext ts */src */lib",
"postinstall": "node ./scripts/install-deps.js"
2017-06-10 01:29:16 +03:00
},
2020-04-07 20:17:21 +03:00
"repository": "eugeny/terminus",
2020-04-08 12:23:29 +03:00
"author": "Eugene Pankov",
2020-12-24 16:03:14 +03:00
"license": "MIT"
2016-12-23 12:06:53 +03:00
}