-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 802 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 802 Bytes
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
{
"name": "revolt",
"version": "0.0.1",
"description": "Revolt Client in Electron",
"main": "app/index.js",
"scripts": {
"test": "electron .",
"build-win": "electron-builder -w",
"build-linux-ai": "electron-builder -l"
},
"build": {
"productName": "revolt",
"artifactName": "revolt_client-${version}",
"appId": "com.revolt.revolt-client-electron",
"linux": {
"target": [
"appImage"
],
"category": "Network"
},
"win": {
"target": "portable"
}
},
"author": "fnuer <funey@dsrt-int.net>",
"license": "ISC",
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^12.0.7",
"electron-builder": "^22.11.3"
},
"dependencies": {
"custom-electron-titlebar": "^3.2.6",
"moment": "^2.29.1"
}
}