-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.17 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
{
"name": "remedypro",
"version": "2.0.3",
"description": "Unofficial Discord overlay support for MacOS",
"main": "src/main.js",
"scripts": {
"pack": "sudo electron-builder --mac",
"pack:win": "sudo electron-builder --win"
},
"build": {
"productName": "Remedy Pro",
"mac": {
"icon": "./src/icon/favicon.png",
"asar": true,
"extendInfo": {
"LSUIElement": 1
},
"target": {
"arch": [
"universal"
],
"target": "dmg"
}
},
"win": {
"icon": "./src/icon/favicon.png",
"asar": true,
"target": [
"portable"
]
},
"files": [
"!Pro.md",
"!README.md",
"!Standard.md",
"!src/img"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"discord.js-selfbot-v13": "^2.14.9",
"electron-json-storage": "^4.6.0",
"electron-preferences": "^2.8.2",
"puppeteer-core": "^21.0.2",
"puppeteer-in-electron": "^3.0.5",
"swup": "^4.2.0"
},
"devDependencies": {
"electron": "^25.5.0",
"electron-builder": "^24.6.3",
"modclean": "^3.0.0-beta.1",
"standard": "^17.1.0"
}
}