-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.8 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "gshell",
"version": "0.3.0",
"description": "Interactive graphical desktop environment for LiveG OS.",
"main": "src/main.js",
"author": "LiveG Technologies",
"repository": "https://github.com/LiveGTech/gShell",
"scripts": {
"gshell": "electron .",
"dist": "electron-builder",
"rebuild": "electron-rebuild"
},
"devDependencies": {
"@electron/rebuild": "^3.6.0",
"electron": "^30.1.0",
"electron-builder": "^24.13.3"
},
"dependencies": {
"@liveg/x11": "^2.3.0",
"bcryptjs": "^2.4.3",
"electron-dl": "^3.5.0",
"electron-fetch": "^1.9.1",
"glob": "^10.3.10",
"mime-types": "^2.1.35",
"minimist": "^1.2.7",
"mkdirp": "^0.5.6",
"node-pty": "^1.0.0"
},
"build": {
"appId": "tech.liveg.gshell",
"productName": "gShell",
"copyright": "Copyright © LiveG. All Rights Reserved.",
"beforeBuild": "buildhooks/beforeBuild.js",
"extraResources": [
{
"from": "src",
"to": "src"
},
{
"from": "shell",
"to": "shell"
}
],
"directories": {
"buildResources": "res",
"output": "dist"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"arm64",
"armv7l"
]
}
],
"executableName": "gshell",
"icon": "res/512x512.png",
"synopsis": "Interactive graphical desktop environment for LiveG OS.",
"category": "System"
}
}
}