-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "EZChat",
"version": "1.1.6",
"description": "A minimal Electron application",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder --x64 --publish never",
"publish": "electron-builder build --publish always"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^18.0.0",
"electron-builder": "^22.14.13"
},
"dependencies": {
"axios": "^0.27.2",
"electron-context-menu": "^3.1.2",
"electron-is-dev": "^2.0.0",
"electron-prompt": "^1.7.0",
"electron-reload": "^2.0.0-alpha.1",
"electron-settings": "^4.0.2",
"electron-window-state": "^5.0.3",
"node-twitch": "^0.4.5"
},
"build": {
"extraResources": [
"script_prod.js"
],
"appId": "com.elmarceloc.ezchat",
"win": {
"target": "nsis",
"icon": "icon.png"
}
}
}