package.json 3.7 KB

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