-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.15 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.15 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
{
"name": "shell-leap",
"version": "0.1.3",
"description": "Advanced SSH & SFTP Client",
"author": "Shareef",
"main": "dist/electron/main.js",
"scripts": {
"dev": "concurrently \"npm run dev:next\" \"npm run dev:electron\"",
"dev:next": "next dev",
"dev:electron": "wait-on tcp:3000 && tsc -p electron/tsconfig.json && electron . --no-sandbox --ozone-platform=x11",
"build": "cross-env NODE_ENV=production next build && tsc -p electron/tsconfig.json",
"package": "npm run build && electron-builder build --linux",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.2",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"clsx": "^2.1.1",
"lucide-react": "^0.563.0",
"next": "14.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ssh2": "^1.17.0",
"ssh2-sftp-client": "^12.0.1",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/ssh2": "^1.15.5",
"@types/ssh2-sftp-client": "^9.0.6",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^40.0.0",
"electron-builder": "^26.4.0",
"eslint": "^8",
"eslint-config-next": "14.2.0",
"tailwindcss": "^4",
"typescript": "^5",
"wait-on": "^9.0.3"
},
"build": {
"appId": "com.shareef.shellleap",
"productName": "ShellLeap",
"icon": "build/icon.png",
"directories": {
"output": "dist/build"
},
"files": [
"dist/**/*",
"out/**/*",
"build/**/*",
"package.json"
],
"linux": {
"maintainer": "Shareef <shareefsakk@gmail.com>",
"target": [
"deb",
"AppImage"
],
"category": "Utility",
"icon": "build/icons"
},
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.developer-tools"
},
"win": {
"target": [
"nsis"
],
"icon": "build/icon.ico"
}
}
}