mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-10 12:16:34 +03:00
82 lines
3.3 KiB
JSON
82 lines
3.3 KiB
JSON
{
|
|
"devDependencies": {
|
|
"@fortawesome/fontawesome-free": "^5.13.0",
|
|
"@sentry/cli": "^1.61.0",
|
|
"@sentry/electron": "^2.2.0",
|
|
"@terminus-term/to-string-loader": "1.1.7-beta.1",
|
|
"@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",
|
|
"@typescript-eslint/eslint-plugin": "^4.14.1",
|
|
"@typescript-eslint/parser": "^4.14.1",
|
|
"apply-loader": "2.0.0",
|
|
"awesome-typescript-loader": "^5.2.1",
|
|
"compare-versions": "^3.6.0",
|
|
"core-js": "^3.8.3",
|
|
"cross-env": "7.0.3",
|
|
"css-loader": "5.0.1",
|
|
"electron": "12.0.0-beta.16",
|
|
"electron-builder": "22.10.4",
|
|
"electron-download": "^4.1.1",
|
|
"electron-installer-snap": "^5.1.0",
|
|
"electron-notarize": "^1.0.0",
|
|
"electron-rebuild": "^2.3.4",
|
|
"eslint": "^7.18.0",
|
|
"eslint-plugin-import": "^2.21.1",
|
|
"file-loader": "^6.2.0",
|
|
"graceful-fs": "^4.2.4",
|
|
"html-loader": "1.3.2",
|
|
"json-loader": "0.5.7",
|
|
"lru-cache": "^6.0.0",
|
|
"macos-release": "^2.4.1",
|
|
"node-abi": "^2.19.3",
|
|
"node-gyp": "^7.1.2",
|
|
"node-sass": "^5.0.0",
|
|
"npmlog": "4.1.2",
|
|
"npx": "^10.2.2",
|
|
"patch-package": "^6.2.2",
|
|
"pug": "^3.0.0",
|
|
"pug-html-loader": "1.1.5",
|
|
"pug-lint": "^2.6.0",
|
|
"pug-loader": "^2.4.0",
|
|
"pug-static-loader": "2.0.0",
|
|
"raw-loader": "4.0.2",
|
|
"sass-loader": "^10.1.1",
|
|
"shelljs": "0.8.4",
|
|
"source-code-pro": "^2.30.2",
|
|
"source-sans-pro": "3.6.0",
|
|
"ssh2-streams": "^0.4.10",
|
|
"style-loader": "^2.0.0",
|
|
"svg-inline-loader": "^0.8.2",
|
|
"tslib": "^2.0.3",
|
|
"typedoc": "^0.18.0",
|
|
"typescript": "^3.9.7",
|
|
"url-loader": "^4.1.1",
|
|
"val-loader": "3.0.0",
|
|
"webpack": "^5.18.0",
|
|
"webpack-cli": "^4.4.0",
|
|
"yaml-loader": "0.6.0"
|
|
},
|
|
"resolutions": {
|
|
"*/node-abi": "^2.19.3",
|
|
"**/graceful-fs": "^4.2.4"
|
|
},
|
|
"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",
|
|
"build:typings": "node scripts/build-typings.js",
|
|
"watch": "cross-env TERMINUS_DEV=1 webpack --progress --color --watch",
|
|
"start": "cross-env TERMINUS_DEV=1 electron app --debug",
|
|
"start:prod": "electron app --debug",
|
|
"prod": "cross-env TERMINUS_DEV=1 electron app",
|
|
"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",
|
|
"lint": "eslint --ext ts */src */lib",
|
|
"postinstall": "node ./scripts/install-deps.js"
|
|
},
|
|
"repository": "eugeny/terminus",
|
|
"author": "Eugene Pankov",
|
|
"license": "MIT"
|
|
}
|