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

74 lines
3.0 KiB
JSON
Raw Normal View History

2016-12-23 12:06:53 +03:00
{
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"@sentry/cli": "^1.52.3",
"@sentry/electron": "^1.5.1",
"@types/electron-config": "^3.2.2",
"@types/electron-debug": "^2.1.0",
"@types/js-yaml": "^3.12.4",
2019-10-26 20:10:52 +03:00
"@types/node": "12.7.12",
2020-05-02 15:18:50 +03:00
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^3.3.0",
"apply-loader": "2.0.0",
2018-05-20 17:12:05 +03:00
"awesome-typescript-loader": "^5.0.0",
"core-js": "^3.6.5",
"cross-env": "7.0.2",
"css-loader": "3.4.2",
"electron": "^8.2.5",
"electron-builder": "22.6.1",
2019-11-30 23:09:42 +03:00
"electron-download": "^4.1.1",
"electron-installer-snap": "^5.0.0",
2019-06-27 11:54:18 +03:00
"electron-notarize": "^0.1.1",
"electron-rebuild": "^1.10.1",
"eslint": "^7.2.0",
"eslint-plugin-import": "^2.21.1",
"file-loader": "^5.0.2",
"graceful-fs": "^4.2.4",
"html-loader": "0.5.5",
"json-loader": "0.5.7",
"node-abi": "^2.16.0",
"node-gyp": "^7.0.0",
"node-sass": "^4.14.1",
"npmlog": "4.1.2",
"npx": "^10.2.0",
"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": "^8.0.0",
"shelljs": "0.8.4",
"source-code-pro": "^2.30.2",
"source-sans-pro": "3.6.0",
"style-loader": "^1.1.4",
2018-08-09 16:13:31 +03:00
"svg-inline-loader": "^0.8.0",
"to-string-loader": "1.1.6",
"tslib": "^2.0.0",
"typedoc": "^0.17.7",
"typescript": "^3.9.3",
"url-loader": "^3.0.0",
"val-loader": "2.1.1",
"webpack": "^5.0.0-beta.18",
"webpack-cli": "^3.3.12",
"yaml-loader": "0.6.0"
2016-12-23 12:06:53 +03:00
},
2018-12-30 17:54:17 +03:00
"resolutions": {
2020-02-05 14:53:04 +03:00
"*/node-abi": "^2.14.0"
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",
"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-04-07 20:17:21 +03:00
"license": "MIT"
2016-12-23 12:06:53 +03:00
}