-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 1.98 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
86
87
88
89
90
{
"name": "desktopx",
"version": "1.0.0",
"description": "The Next-Generation 3D Spatial Operating Environment",
"main": "main.js",
"author": "criptoejesus",
"license": "MIT",
"private": true,
"scripts": {
"start": "electron .",
"build:win": "electron-builder --win --x64",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux --x64",
"deploy": "wrangler deploy",
"preview": "wrangler dev"
},
"devDependencies": {
"electron": "^30.0.0",
"electron-builder": "^24.13.3",
"wrangler": "^4.90.0"
},
"build": {
"appId": "com.desktopx.app",
"productName": "DesktopX",
"copyright": "Copyright © 2025 criptoejesus",
"directories": {
"output": "dist",
"buildResources": "assets"
},
"files": [
"main.js",
"preload.js",
"app/**/*"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "app/favicon.ico",
"requestedExecutionLevel": "asInvoker"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "DesktopX",
"installerIcon": "app/favicon.ico",
"uninstallerIcon": "app/favicon.ico",
"installerHeaderIcon": "app/favicon.ico"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "app/logo.png",
"category": "public.app-category.entertainment",
"darkModeSupport": true
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
],
"icon": "app/logo.png",
"category": "Game"
}
}
}