package.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. {
  2. "name": "term",
  3. "devDependencies": {
  4. "@types/fs-promise": "1.0.1",
  5. "@types/node": "7.0.5",
  6. "@types/webpack-env": "1.13.0",
  7. "apply-loader": "0.1.0",
  8. "awesome-typescript-loader": "^5.0.0",
  9. "core-js": "2.4.1",
  10. "cross-env": "4.0.0",
  11. "css-loader": "0.28.0",
  12. "electron": "2.0.0",
  13. "electron-builder": "17.1.1",
  14. "electron-builder-squirrel-windows": "17.0.1",
  15. "electron-rebuild": "^1.7.3",
  16. "file-loader": "^1.1.11",
  17. "font-awesome": "4.7.0",
  18. "graceful-fs": "^4.1.11",
  19. "html-loader": "0.4.4",
  20. "json-loader": "0.5.4",
  21. "less": "2.7.1",
  22. "less-loader": "2.2.3",
  23. "node-abi": "^2.4.1",
  24. "node-gyp": "^3.6.2",
  25. "node-sass": "^4.5.3",
  26. "npmlog": "4.1.0",
  27. "npx": "^9.7.1",
  28. "pug": "^2.0.3",
  29. "pug-html-loader": "1.0.9",
  30. "pug-loader": "^2.4.0",
  31. "pug-static-loader": "0.0.1",
  32. "raven-js": "3.16.0",
  33. "raw-loader": "0.5.1",
  34. "sass-loader": "^7.0.1",
  35. "shelljs": "0.7.7",
  36. "source-sans-pro": "2.0.10",
  37. "style-loader": "0.13.1",
  38. "to-string-loader": "1.1.5",
  39. "tslint": "5.1.0",
  40. "tslint-config-standard": "5.0.2",
  41. "tslint-eslint-rules": "4.0.0",
  42. "typescript": "^2.8.3",
  43. "url-loader": "0.5.7",
  44. "val-loader": "0.5.0",
  45. "webpack": "^4.8.3",
  46. "webpack-cli": "^2.1.3",
  47. "yaml-loader": "0.4.0",
  48. "yarn": "^1.3.2"
  49. },
  50. "build": {
  51. "appId": "org.terminus",
  52. "productName": "Terminus",
  53. "compression": "normal",
  54. "extraResources": [
  55. "builtin-plugins",
  56. "clink"
  57. ],
  58. "win": {
  59. "icon": "./build/windows/icon.ico",
  60. "publish": [
  61. "github"
  62. ]
  63. },
  64. "squirrelWindows": {
  65. "iconUrl": "https://github.com/Eugeny/terminus/raw/master/build/windows/icon.ico",
  66. "artifactName": "terminus-${version}-${os}-${arch}.exe"
  67. },
  68. "mac": {
  69. "category": "public.app-category.video",
  70. "icon": "./build/mac/icon.icns",
  71. "identity": null,
  72. "publish": [
  73. "github"
  74. ],
  75. "extendInfo": {
  76. "NSRequiresAquaSystemAppearance": false
  77. }
  78. },
  79. "dmg": {
  80. "artifactName": "terminus-${version}-${os}-${arch}.dmg"
  81. },
  82. "linux": {
  83. "category": "Utilities",
  84. "icon": "./build/icons",
  85. "publish": [
  86. "github"
  87. ]
  88. },
  89. "deb": {
  90. "depends": [
  91. "screen",
  92. "gconf2",
  93. "gconf-service",
  94. "libnotify4",
  95. "libappindicator1",
  96. "libxtst6",
  97. "libnss3",
  98. "tmux"
  99. ],
  100. "artifactName": "terminus-${version}-${os}-${arch}.deb"
  101. },
  102. "rpm": {
  103. "depends": [
  104. "screen",
  105. "gnome-python2-gnomekeyring"
  106. ],
  107. "artifactName": "terminus-${version}-${os}-${arch}.rpm"
  108. }
  109. },
  110. "scripts": {
  111. "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 && webpack --color --config terminus-ssh/webpack.config.js",
  112. "watch": "webpack --progress --color --watch",
  113. "start": "cross-env DEV=1 electron app --debug",
  114. "prod": "cross-env DEV=1 electron app",
  115. "lint": "tslint -c tslint.json -t stylish terminus-*/src/**/*.ts terminus-*/src/*.ts app/src/*.ts",
  116. "postinstall": "install-app-deps"
  117. },
  118. "repository": "eugeny/terminus"
  119. }