-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.63 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
{
"name": "360",
"version": "3.6.0",
"description": "360 \u2014 Search, Chat, Maps, Mail, News and Music. A privacy-respecting Google alternative.",
"author": "360 Digital, Co. <admin@360-search.com>",
"main": "electron/main.js",
"homepage": "https://360-search.com",
"scripts": {
"start": "node server.js",
"build:win": "electron-builder --win --x64",
"build:linux": "electron-builder --linux deb AppImage",
"build:mac": "electron-builder --mac dmg"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5"
},
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.360digital.360",
"productName": "360",
"copyright": "Copyright \u00a9 2026 360 Digital, Co.",
"directories": {
"output": "dist"
},
"files": [
"electron/**/*",
"assets/**/*",
"*.html",
"*.css",
"*.js",
"!server.js",
"!node_modules"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "electron/icons/icon.ico"
},
"linux": {
"target": [
"deb",
"AppImage"
],
"icon": "electron/icons/icon.png",
"category": "Network"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"icon": "icon-512.png",
"category": "public.app-category.productivity"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}