tabby/package.json

80 lines
3.3 KiB
JSON
Raw Normal View History

2016-12-23 09:06:53 +00:00
{
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.2",
"@sentry/cli": "^1.63.0",
"@sentry/electron": "^2.4.0",
2021-01-28 20:11:53 +00:00
"@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": "^4.0.0",
"@types/node": "14.14.31",
"@types/webpack-env": "^1.16.0",
2021-01-28 20:46:31 +00:00
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.17.0",
"apply-loader": "2.0.0",
"awesome-typescript-loader": "^5.2.1",
2021-01-02 12:08:00 +00:00
"compare-versions": "^3.6.0",
"core-js": "^3.9.1",
2021-01-28 20:11:53 +00:00
"cross-env": "7.0.3",
"css-loader": "5.0.1",
2021-03-13 19:06:42 +00:00
"electron": "12.0.1",
"electron-builder": "22.10.5",
2019-11-30 20:09:42 +00:00
"electron-download": "^4.1.1",
"electron-installer-snap": "^5.1.0",
"electron-notarize": "^1.0.0",
"electron-rebuild": "^2.3.5",
2021-01-28 20:46:31 +00:00
"eslint": "^7.18.0",
2020-12-24 13:03:14 +00:00
"eslint-plugin-import": "^2.21.1",
2021-01-28 20:11:53 +00:00
"file-loader": "^6.2.0",
"graceful-fs": "^4.2.6",
"html-loader": "2.1.2",
"json-loader": "0.5.7",
2020-12-27 12:03:46 +00:00
"lru-cache": "^6.0.0",
2021-01-02 12:08:00 +00:00
"macos-release": "^2.4.1",
2020-12-24 13:03:14 +00:00
"node-abi": "^2.19.3",
"node-gyp": "^7.1.2",
"node-sass": "^5.0.0",
"npmlog": "4.1.2",
"npx": "^10.2.2",
2021-01-26 23:26:48 +00:00
"patch-package": "^6.2.2",
"pug": "^3.0.2",
"pug-html-loader": "1.1.5",
"pug-lint": "^2.6.0",
2018-05-20 14:12:05 +00:00
"pug-loader": "^2.4.0",
"pug-static-loader": "2.0.0",
2021-01-28 20:11:53 +00:00
"raw-loader": "4.0.2",
"sass-loader": "^11.0.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.1.0",
"typedoc": "^0.20.28",
"typescript": "^3.9.9",
2021-01-28 20:11:53 +00:00
"url-loader": "^4.1.1",
"val-loader": "3.0.0",
"webpack": "^5.18.0",
"webpack-cli": "^4.5.0",
"yaml-loader": "0.6.0"
2016-12-23 09:06:53 +00:00
},
2018-12-30 14:54:17 +00:00
"resolutions": {
2021-03-03 19:58:33 +00:00
"*/node-abi": "^2.20.0",
"**/graceful-fs": "^4.2.4"
2018-12-30 14:54:17 +00:00
},
2016-12-23 09:06:53 +00: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 15:40:26 +00:00
"build:typings": "node scripts/build-typings.js",
2019-02-09 21:10:42 +00:00
"watch": "cross-env TERMINUS_DEV=1 webpack --progress --color --watch",
"start": "cross-env TERMINUS_DEV=1 electron app --debug",
2020-08-07 10:25:02 +00:00
"start:prod": "electron app --debug",
2019-02-09 21:10:42 +00:00
"prod": "cross-env TERMINUS_DEV=1 electron app",
2021-03-03 20:33:37 +00:00
"docs": "typedoc --out docs/api --tsconfig terminus-core/src/tsconfig.typings.json terminus-core/src/index.ts && typedoc --out docs/api/terminal --tsconfig terminus-terminal/tsconfig.typings.json terminus-terminal/src/index.ts && typedoc --out docs/api/settings --tsconfig terminus-settings/tsconfig.typings.json terminus-settings/src/index.ts",
2020-02-05 11:53:04 +00:00
"lint": "eslint --ext ts */src */lib",
"postinstall": "node ./scripts/install-deps.js"
2017-06-09 22:29:16 +00:00
},
2021-01-28 20:52:11 +00:00
"private": true
2016-12-23 09:06:53 +00:00
}