-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.99 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "microsoft-office",
"productName": "Microsoft Office",
"version": "2023.1.1",
"description": "Microsoft Office App is made especially for the Linux Operating System and is a much better alternative for Google Docs.",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"keywords": [
"Microsoft",
"Office",
"Productivity",
"App"
],
"author": "Comp Labs <complabs28@gmail.com>",
"license": "MIT",
"devDependencies": {
"electron": "^16.2.8",
"electron-packager": "^15.5.1",
"electron-builder": "^22.3.2"
},
"build": {
"productName": "Microsoft Office",
"generateUpdatesFilesForAllChannels": true,
"mac": {
"artifactName": "Microsoft-Office.${ext}",
"target": [
{
"arch": "universal",
"target": "dmg"
},
{
"arch": "universal",
"target": "zip"
}
],
"category": "com.complabs.Microsoft-Office.category.productivity",
"darkModeSupport": true,
"hardenedRuntime": true,
"asarUnpack": "**/*.node"
},
"linux": {
"artifactName": "Microsoft-Office-${arch}.${ext}",
"category": "CompLabs;MicrosoftOffice;Category;Productivity",
"executableName": "Microsoft-Office",
"target": [
{
"arch": "x64",
"target": "snap"
},
{
"arch": "x64",
"target": "AppImage"
},
{
"arch": "x64",
"target": "deb"
}
]
},
"deb": {
"depends": [
"libgtk-3-0",
"libnss3",
"libxtst6",
"xdg-utils",
"libatspi2.0-0",
"libuuid1"
]
},
"win": {
"artifactName": "Microsoft-Office.${ext}",
"target": [
{
"arch": [
"ia32",
"x64"
],
"target": "nsis"
}
]
}
}
}