-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.1 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "termio",
"version": "1.3.3",
"description": "Local Electron SSH terminal with SFTP file management and remote system metrics.",
"main": "dist-electron/electron/main.js",
"scripts": {
"generate:icons": "pwsh -NoProfile -File scripts/generate-app-icon.ps1",
"dev": "concurrently -k \"npm:dev:renderer\" \"npm:dev:electron\"",
"dev:renderer": "vite",
"dev:electron": "npm run build:electron && wait-on tcp:5173 && electron dist-electron/electron/main.js --renderer-url=http://localhost:5173",
"build": "vite build && npm run build:electron",
"build:electron": "tsc -p tsconfig.electron.json && node scripts/build-native-drag-helper.cjs",
"pack:unpacked": "node scripts/pack-unpacked.cjs",
"preview": "vite preview",
"start": "npm run build && electron dist-electron/electron/main.js",
"typecheck": "tsc -p tsconfig.json && tsc -p tsconfig.electron.json --noEmit",
"test": "node --import tsx --test tests/**/*.test.ts",
"verify": "npm run typecheck && npm run test && npm run build"
},
"keywords": [
"ssh",
"terminal",
"sftp",
"electron",
"desktop"
],
"author": "jadchene",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jadchene/termio.git"
},
"homepage": "https://github.com/jadchene/termio#readme",
"bugs": {
"url": "https://github.com/jadchene/termio/issues"
},
"build": {
"appId": "com.termio.app",
"productName": "Termio",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"electron/preload.js",
"assets/**/*",
"package.json",
"!node_modules/sqlite3/{deps,src,build-tmp}/**/*",
"!node_modules/sqlite3/**/*.{cc,h,md}"
],
"electronLanguages": [
"en-US",
"zh-CN"
],
"asarUnpack": [
"dist-electron/native/**/*"
],
"win": {
"icon": "assets/app-icon.ico",
"target": "nsis"
}
},
"type": "commonjs",
"dependencies": {
"keytar": "^7.9.0",
"sqlite3": "^6.0.1",
"ssh2": "^1.17.0",
"ssh2-sftp-client": "^12.1.1"
},
"devDependencies": {
"@ant-design/icons": "^6.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ssh2": "^1.15.5",
"@vitejs/plugin-react": "^6.0.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"antd": "^6.5.4",
"concurrently": "^10.0.4",
"electron": "^41.2.0",
"electron-builder": "^26.15.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.1.5",
"wait-on": "^9.0.5"
},
"overrides": {
"axios": "1.18.1",
"esbuild": "0.28.1",
"form-data": "4.0.6",
"ip-address": "10.3.1",
"joi": "18.2.1",
"minimatch@10.2.5": {
"brace-expansion": "5.0.9"
},
"tar": "7.5.22"
},
"allowScripts": {
"electron@41.2.0": true,
"electron-winstaller@5.4.0": true,
"esbuild@0.28.1": true,
"keytar@7.9.0": true,
"sqlite3@6.0.1": true,
"ssh2@1.17.0": true
}
}