-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 1.8 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
91
92
93
94
95
96
97
{
"name": "asteroid",
"productName": "Asteroid",
"version": "1.0.0",
"description": "AsteroidApp - Flash Browser Application for Windows and Mac",
"license": "MIT",
"author": "Leet Games",
"main": "app.js",
"repository": "asteroid-dev/asteroidapp",
"flash_version": "32.0.0.363",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"lint": "xo",
"test": "npm run lint",
"start": "electron .",
"pack": "electron-builder --dir",
"mac": "electron-builder --macos",
"windows": "electron-builder --windows",
"linux": "electron-builder --linux",
"release": "np"
},
"dependencies": {
"del": "^5.1.0",
"dotenv": "^8.2.0",
"electron-simple-updater": "^2.0.8",
"jquery": "^3.5.0",
"jquery-easing": "0.0.1"
},
"devDependencies": {
"electron": "^7.1.1",
"electron-builder": "^22.8.1",
"electron-debug": "^3.1.0",
"electron-notarize": "^1.0.0",
"np": "^6.3.2",
"xo": "^0.32.1"
},
"xo": {
"envs": [
"node",
"browser"
]
},
"np": {
"publish": false,
"releaseDraft": false
},
"build": {
"appId": "nl.habbo.AsteroidApp",
"extraResources": [
{
"from": "./plugins/",
"to": "../plugins"
}
],
"mac": {
"category": "public.games.social-networking",
"darkModeSupport": true,
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements-mac.plist",
"entitlementsInherit": "build/entitlements-mac.plist"
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Network;Chat"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
}
}
}