-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "discord-bot-messenger",
"version": "1.0.0",
"main": "dist-electron/main/index.js",
"description": "Really simple Electron + Vue + Vite boilerplate.",
"author": "John Uberbacher",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build && electron-builder",
"preview": "vite serve",
"app:dir": "electron-builder --dir",
"app:dist": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"productName": "Discord Bot Messenger",
"appId": "com.johnuberbacher.discordbotmessenger",
"asar": true,
"directories": {
"output": "release/${version}"
},
"mac": {
"artifactName": "${productName}.${ext}",
"target": [
"dmg"
]
},
"win": {
"target": [
"portable", "zip"
],
"icon": "public/favicon.ico",
"artifactName": "${productName}.${ext}",
"executableName": "Discord Bot Messenger"
},
"nsis": {
"shortcutName": "Discord Bot Messenger",
"oneClick": true,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createStartMenuShortcut": true,
"deleteAppDataOnUninstall": false,
"installerIcon": "public/favicon.ico",
"uninstallerIcon": "public/favicon.ico",
"uninstallDisplayName": "Uninstall",
"license": "public/license.txt"
}
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.1.0",
"electron": "^25.0.1",
"electron-builder": "^24.4.0",
"vite": "^4.1.4",
"vite-plugin-electron": "^0.12.0",
"vite-plugin-electron-renderer": "^0.14.1",
"vue": "^3.2.47"
},
"dependencies": {
"discord.js": "^14.11.0",
"electron-store": "^8.1.0"
}
}