This repository has been archived by the owner on Feb 13, 2023. It is now read-only.
forked from giantdwarf17/Discord-M1
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 2.07 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
{
"name": "Discord",
"version": "1.7.1",
"main": "index.js",
"description": "Discord Native for M1 Macs",
"author": {
"name": "Yann Hodiesne",
"email": "[email protected]",
"url": "https://github.com/yannhodiesne/Discord-M1"
},
"contributors": [
{
"name": "17hoehbr",
"email": "[email protected]",
"url": "https://github.com/17hoehbr/Discord-M1"
}
],
"homepage": "https://github.com/yannhodiesne/Discord-M1",
"keywords": [
"Discord"
],
"repository": {
"type": "git",
"url": "git+ssh://github.com:yannhodiesne/Discord-M1"
},
"license": "MIT",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron --disable-gpu .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"publish": "electron-builder --publish always"
},
"dependencies": {
"electron-context-menu": "^3.1.1",
"electron-store": "^8.0.1",
"electron-updater": "4.6.2",
"electron-window-state": "5.0.3",
"mac-screen-capture-permissions": "^2.0.0"
},
"devDependencies": {
"dotenv": "^10.0.0",
"electron": "13.6.1",
"electron-builder": "22.14.6",
"electron-notarize": "^1.1.1",
"eslint": "^8.2.0"
},
"build": {
"productName": "Discord",
"appId": "yannhodiesne.Discord-M1",
"extends": null,
"extraResources": [
"discord-badge-count.js",
"discord-context-menu.js",
"discord-platform-osx.js",
"discord-downloadapps-icon.js"
],
"mac": {
"category": "public.app-category.social-networking",
"target": [
{
"target": "default",
"arch": [
"arm64"
]
}
],
"icon": "icon.icns",
"darkModeSupport": "true",
"publish": [
{
"provider": "github",
"owner": "yannhodiesne",
"repo": "Discord-M1"
}
],
"hardenedRuntime": true,
"entitlements": "./build/entitlements.mac.inherit.plist"
},
"afterSign": "./build/afterSignHook.js"
},
"packageManager": "[email protected]"
}