-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
116 lines (116 loc) · 2.39 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "habboapp",
"version": "1.0.0",
"description": "Habbo Electron App",
"homepage": "https://github.com/pedruhb",
"main": "index.js",
"scripts": {
"start": "electron .",
"publish": "electron-builder --win -p always",
"build": "electron-builder --win"
},
"keywords": [
"habbo",
"app",
"electron",
"app",
"cosmic",
"app"
],
"author": "PHB - https://phb.services - https://github.com/pedruhb",
"license": "ISC",
"devDependencies": {
"electron": "11.1.0",
"electron-builder": "22.9.1"
},
"dependencies": {
"axios": "^0.24.0",
"discord-rpc": "^4.0.1",
"fs": "^0.0.1-security",
"https": "^1.0.0",
"jquery": "^3.2.1",
"jQuery": "^1.7.4",
"path": "^0.12.7",
"qs": "^6.10.1"
},
"build": {
"appId": "phb.services.habboapp",
"extraResources": [
"./flash/**"
],
"directories": {
"buildResources": "resources",
"output": "release"
},
"publish": [
{
"provider": "github",
"owner": "pedruhb",
"repo": "HabboApp",
"releaseType": "release",
"vPrefixedTagName": true,
"publishAutoUpdate": true
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {
"installerIcon": "icon.ico",
"uninstallerIcon": "icon.ico",
"uninstallDisplayName": "HabboApp",
"oneClick": true,
"perMachine": false,
"artifactName": "HabboApp-${version}.${ext}"
},
"mac": {
"icon": "icon.png",
"category": "public.games.social-networking",
"darkModeSupport": true,
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements-mac.plist",
"entitlementsInherit": "build/entitlements-mac.plist",
"target": [
"dmg"
]
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64",
"ia32",
"armv7l",
"arm64"
]
}
],
"category": "Network;Chat"
}
}
}