-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 995 Bytes
/
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
{
"name": "DisWeb",
"version": "2.0.5",
"description": "A Discord Desktop app for linux, built with electron-builder.",
"main": "src/js/main.js",
"scripts": {
"start": "electron .",
"build-armv7l": "electron-builder --linux appimage --armv7l",
"build-arm64": "electron-builder --linux appimage --arm64"
},
"build": {
"linux": {
"target": "appimage",
"icon": "build/app.png",
"category": "Network"
}
},
"keywords": [
"Discord",
"linux",
"electron",
"webapp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oxmc/disweb.git"
},
"author": {
"name": "oxmc",
"email": " [email protected]"
},
"license": "MIT",
"devDependencies": {
"electron": "^13.1.9",
"electron-builder": "^22.11.7"
},
"dependencies": {
"decompress": "^4.2.1",
"fs": "^0.0.1-security",
"node-notifier": "^10.0.0",
"os": "^0.1.2",
"path": "^0.12.7",
"request": "^2.88.2"
}
}