-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.21 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.21 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
{
"name": "my-new-app",
"productName": "my-new-app",
"version": "1.0.0",
"description": "My Electron application description",
"main": "./dist/app/application.js",
"scripts": {
"start": "tsc && electron .",
"watch": "tsc -w",
"fix": "eslint --fix --ext .ts --ext .tsx .",
"lint": "eslint --ext .ts .",
"pack": "electron-builder --dir",
"mac": "electron-builder --macos",
"windows": "electron-builder --windows",
"linux": "electron-builder --linux"
},
"keywords": [],
"author": {
"name": "Layne",
"email": "laynebalsters@gmail.com"
},
"license": "MIT",
"build": {
"appId": "com.habboretro.Browser",
"extraResources":[
"./resources/flash/**"
],
"files": [
"dist/**/*",
"src/index.html"
],
"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",
"electron-builder": "^22.9.1"
},
"dependencies": {
"@types/mousetrap": "^1.6.9",
"electron-context-menu": "^3.1.2",
"mousetrap": "^1.6.5",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sass": "^1.50.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0"
}
}