-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ternix",
"version": "1.2.0",
"description": "Ternix — the last terminal you will ever need. A modern SSH/remote session manager.",
"homepage": "https://github.com/PraneethReddy-github/ternix",
"author": "Ternix",
"license": "MIT",
"main": "out/main/index.js",
"type": "module",
"scripts": {
"dev": "electron-vite dev -- --no-sandbox",
"build": "electron-vite build",
"preview": "electron-vite preview",
"postinstall": "electron-builder install-app-deps",
"build:win": "electron-vite build && electron-builder --win -c.directories.output=dist-electron/win",
"build:mac": "electron-vite build && electron-builder --mac -c.directories.output=dist-electron/mac",
"build:linux": "electron-vite build && electron-builder --linux -c.directories.output=dist-electron/linux",
"package": "electron-vite build && electron-builder",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.node.json",
"rebuild": "electron-rebuild -f -w better-sqlite3,node-pty,serialport"
},
"dependencies": {
"@fontsource/cascadia-code": "^5.3.0",
"@fontsource/fira-code": "^5.3.0",
"@fontsource/ibm-plex-mono": "^5.3.0",
"@fontsource/jetbrains-mono": "^5.3.0",
"@novnc/novnc": "^1.7.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-search": "^0.15.0",
"@xterm/addon-unicode11": "^0.8.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/addon-webgl": "^0.18.0",
"@xterm/xterm": "^5.5.0",
"better-sqlite3": "^11.8.1",
"guacamole-common-js": "^1.5.0",
"guacamole-lite": "^1.2.0",
"js-yaml": "^4.2.0",
"keytar": "^7.9.0",
"lucide-react": "^0.469.0",
"node-pty": "^1.0.0",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"serialport": "^12.0.0",
"ssh2": "^1.16.0",
"tweetnacl": "^1.0.3",
"ws": "^8.21.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@electron/rebuild": "^3.7.1",
"@types/better-sqlite3": "^7.6.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.7",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/ssh2": "^1.15.1",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"electron": "^33.3.1",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^5.4.14"
},
"optionalDependencies": {
"electron-updater": "^6.3.9"
},
"@electron/rebuild": {
"onlyModules": [
"better-sqlite3",
"node-pty",
"serialport",
"keytar"
]
}
}