forked from Laynester/browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.76 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.76 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
{
"name": "my-new-app",
"productName": "my-new-app",
"version": "1.0.0",
"description": "My Electron application description",
"main": "dist/index.js",
"scripts": {
"start": "tsc && electron .",
"watch": "tsc -w",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts ."
},
"keywords": [],
"author": {
"name": "Layne",
"email": "laynebalsters@gmail.com"
},
"license": "MIT",
"build": {
"appId": "com.habboretro.Browser",
"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"
]
}
]
}
},
"devDependencies": {
"@types/react": "^18.0.1",
"@types/react-dom": "^18.0.0",
"electron": "^11.2.0",
"typescript": "~4.5.4"
},
"dependencies": {
"electron-context-menu": "^3.1.2",
"electron-builder": "^22.9.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sass": "^1.50.0"
}
}