package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "tabby",
  3. "description": "A terminal for a modern age",
  4. "private": true,
  5. "repository": "https://github.com/Eugeny/tabby",
  6. "author": {
  7. "name": "Eugene Pankov",
  8. "email": "[email protected]"
  9. },
  10. "main": "dist/main.js",
  11. "version": "1.0.0-alpha.1",
  12. "scripts": {
  13. "build": "webpack --progress --color --display-modules",
  14. "watch": "webpack --progress --color --watch"
  15. },
  16. "dependencies": {
  17. "@angular/cdk": "^12.2.9",
  18. "@electron/remote": "1.2.0",
  19. "@tabby-gang/node-pty": "^0.11.0-beta.200",
  20. "any-promise": "^1.3.0",
  21. "electron-config": "2.0.0",
  22. "electron-debug": "^3.2.0",
  23. "electron-promise-ipc": "^2.2.4",
  24. "electron-updater": "^4.3.9",
  25. "fontmanager-redux": "1.1.0",
  26. "glasstron": "0.0.7",
  27. "js-yaml": "4.1.0",
  28. "keytar": "^7.7.0",
  29. "mz": "^2.7.0",
  30. "native-process-working-directory": "^1.0.2",
  31. "npm": "6",
  32. "rxjs": "^7.4.0",
  33. "source-map-support": "^0.5.20",
  34. "v8-compile-cache": "^2.3.0",
  35. "yargs": "^17.2.1"
  36. },
  37. "optionalDependencies": {
  38. "macos-native-processlist": "^2.0.0",
  39. "serialport": "^9.2.5",
  40. "windows-blurbehind": "^1.0.1",
  41. "windows-native-registry": "^3.1.0",
  42. "windows-process-tree": "^0.3.2"
  43. },
  44. "devDependencies": {
  45. "@types/mz": "2.7.4",
  46. "@types/node": "16.0.1",
  47. "ngx-filesize": "^2.0.16",
  48. "node-abi": "^3.3.0"
  49. },
  50. "peerDependencies": {
  51. "tabby-community-color-schemes": "*",
  52. "tabby-core": "*",
  53. "tabby-electron": "*",
  54. "tabby-local": "*",
  55. "tabby-plugin-manager": "*",
  56. "tabby-serial": "*",
  57. "tabby-settings": "*",
  58. "tabby-ssh": "*",
  59. "tabby-terminal": "*"
  60. },
  61. "resolutions": {
  62. "*/node-abi": "^2.20.0"
  63. }
  64. }