forked from revoltchat/desktop
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.05 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
{
"name": "revolt-desktop",
"version": "1.0.2",
"description": "Revolt desktop app",
"private": true,
"author": {
"name": "Paul Makles",
"url": "https://insrt.uk",
"email": "me@insrt.uk"
},
"homepage": "https://revolt.chat",
"main": "bundle/main.js",
"scripts": {
"build:bundle": "tsc",
"watch:bundle": "tsc-watch",
"start": "electron .",
"eb": "electron-builder",
"release": "dotenv -e .env electron-builder --publish always",
"build:linux:unpacked": "electron-builder -l dir",
"build:linux:appimage": "electron-builder -l AppImage",
"build:windows:appx": "electron-builder -w appx",
"test:linux:appimage": "dist/Revolt-1.0.1.AppImage",
"clean": "rimraf dist"
},
"repository": "revoltchat/desktop",
"devDependencies": {
"@types/auto-launch": "^5.0.2",
"@types/discord-rpc": "^4.0.0",
"dotenv-cli": "^4.0.0",
"electron": "^13.1.6",
"electron-builder": "^22.11.7",
"rimraf": "^3.0.2",
"tsc-watch": "^4.4.0",
"typescript": "^4.3.5"
},
"build": {
"appId": "chat.revolt.app",
"productName": "Revolt",
"mac": {
"target": [
"zip"
],
"category": "public.app-category.social-networking"
},
"linux": {
"target": [
"AppImage",
"pacman",
"tar.gz",
"deb"
],
"category": "Network"
},
"win": {
"target": [
"nsis",
"portable"
]
},
"appx": {
"displayName": "Revolt Chat",
"applicationId": "revolt.chat",
"identityName": "40345RevoltCommunications.revolt.chat",
"publisher": "CN=B040CC7E-0016-4AF5-957F-F8977A6CFA3B",
"publisherDisplayName": "Revolt Communications"
},
"publish": {
"provider": "github"
}
},
"dependencies": {
"@cliqz/adblocker-electron": "^1.23.0",
"auto-launch": "^5.0.5",
"cross-fetch": "^3.1.4",
"discord-rpc": "^4.0.1",
"electron-store": "^8.0.0",
"electron-updater": "^4.3.9",
"electron-window-state": "^5.0.3",
"electron-winstore-auto-launch": "^2.0.6"
}
}