-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 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
{
"name": "am-gui",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"start": "electron .",
"download-icons": "node scripts/download-icons.js --limit=500 --concurrency=8",
"lint": "eslint main.js preload.js src/**/*.js",
"dist": "npx electron-builder --linux dir && find ./dist -name '*.node' -exec chmod 644 {} +",
"postinstall": "if [ \"$CI\" != \"true\" ]; then electron-builder install-app-deps; fi"
},
"devDependencies": {
"@electron/rebuild": "^4.0.1",
"electron": "^35.7.5",
"electron-builder": "^26.0.12",
"eslint": "^9.39.2"
},
"dependencies": {
"node-pty": "^1.0.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"undici": "^7.16.0"
},
"build": {
"appId": "io.shikakiben.am-gui",
"productName": "AM-GUI",
"files": [
"main.js",
"preload.js",
"index.html",
"style.css",
"AM-GUI.png",
"src/**",
"node_modules/**",
"categories-cache.json"
],
"asar": true,
"asarUnpack": [
"**/*.node",
"node_modules/**/build/Release/**"
],
"extraResources": [
{ "from": "src/assets/tray", "to": "assets/tray", "filter": ["**/*"] }
],
"directories": {
"output": "dist"
},
"linux": {
"target": [
"dir"
],
"category": "Utility"
}
},
"description": "AM-GUI — gestionnaire d'apps pour AppMan",
"author": "Shikakiben <noreply@example.com>",
"engines": {
"node": ">=20 <23"
}
}