-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 KB
/
package.json
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
{
"name": "ssh_manager",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:tailwind": "npx tailwindcss -i ./src/tailwind.css -o ./dist/tailwind.css --minify"
},
"author": "Flerken42",
"license": "",
"description": "An app to manage SSH connections and tunnels",
"devDependencies": {
"autoprefixer": "^10.4.20",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"webpack": "^5.96.1"
},
"dependencies": {
"sqlite3": "^5.1.7"
},
"build": {
"appId": "flerken42.ssh_manager",
"productName": "SSH Manager",
"win": {
"icon": "assets/app_icon.ico",
"target": "nsis"
},
"linux": {
"icon": "assets/app_icon.png",
"target": "AppImage"
},
"files": [
"dist/**/*",
"main.js",
"preload.js",
"renderer.js",
"database.js",
"tunnelManager.js",
"index.html",
"assets/**/*"
],
"directories": {
"buildResources": "assets"
}
}
}