-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.66 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.66 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
{
"name": "netshell",
"productName": "NetShell",
"version": "1.0.0",
"description": "SSH/Telnet/Serial terminal for network engineers — multi-tab sessions, credential vault, broadcast, compliance scanning, AI assistant, topology discovery, and 7 connection types.",
"main": ".webpack/main",
"private": true,
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"postinstall": "electron-rebuild"
},
"keywords": [],
"author": {
"name": "xO2Kx",
"email": "tunnelmind@proton.me"
},
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-deb": "^7.11.1",
"@electron-forge/maker-dmg": "^7.11.1",
"@electron-forge/maker-rpm": "^7.11.1",
"@electron-forge/maker-squirrel": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.11.1",
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron-forge/plugin-webpack": "^7.11.1",
"@electron/fuses": "^1.8.0",
"@types/d3": "^7.4.3",
"@types/diff": "^7.0.2",
"@types/js-yaml": "^4.0.9",
"@types/node-cron": "^3.0.11",
"@types/nunjucks": "^3.2.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ssh2": "^1.15.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/webpack-asset-relocator-loader": "^1.7.3",
"css-loader": "^6.11.0",
"electron": "41.2.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"node-loader": "^2.1.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.7",
"typescript": "^6.0.2"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"@kubernetes/client-node": "^1.4.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/xterm": "^6.0.0",
"axios": "^1.15.0",
"cli-table3": "^0.6.5",
"d3": "^7.9.0",
"diff": "^8.0.4",
"electron-squirrel-startup": "^1.0.1",
"electron-store": "^11.0.2",
"js-yaml": "^4.1.1",
"keytar": "^7.9.0",
"node-cron": "^4.2.1",
"node-vault": "^0.12.0",
"nunjucks": "^3.2.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"serialport": "^13.0.0",
"simple-git": "^3.35.2",
"ssh-config": "^5.1.0",
"ssh2": "^1.17.0",
"tftp": "^0.1.2",
"uuid": "^13.0.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-search": "^0.13.0"
}
}