This repository was archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.41 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.41 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
{
"name": "Discord",
"version": "1.2.0",
"main": "index.js",
"description": "Discord Native for M1 Macs",
"author": {
"name": "17hoehbr",
"email": "17hoehbr@gmail.com",
"url": "https://github.com/17hoehbr/Discord-m1"
},
"homepage": "https://github.com/17hoehbr/Discord-m1",
"keywords": [
"Discord"
],
"repository": {
"type": "git",
"url": "git+ssh://github.com:17hoehbr/Discord-m1"
},
"license": "MIT",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron --disable-gpu .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"dependencies": {
"electron-updater": "4.3.9",
"electron-window-state": "5.0.3",
"electron-prompt": "1.6.2",
"express": "4.17.1",
"express-asset-file-cache-middleware": "1.3.0",
"v8-compile-cache": "2.3.0"
},
"devDependencies": {
"electron": "13.0.1",
"electron-builder": "22.11.5",
"electron-webpack": "2.8.2",
"webpack": "4.42.1"
},
"build": {
"appId": "Discord-m1",
"extends": null,
"extraResources": ["inject.js"],
"mac": {
"category" : "public.app-category.social-networking",
"target": [
"dmg"
],
"icon" : "icon.icns",
"darkModeSupport" : "true",
"publish": [
{
"provider": "github",
"owner": "17hoehbr",
"repo": "Discord-m1"
}
]
}
}
}