-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.03 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
{
"name": "log-send",
"version": "0.1.10",
"description": "日报收集器",
"main": "main.js",
"scripts": {
"start": "cross-env NODE_ENV=production electron .",
"build": "npm run remove:pack && npm version patch && npm run build:win && npm run build:mac",
"remove:pack": "rm -rf logSend*",
"build:win": "electron-packager . logSend --platform=win32 --arch=x64 --icon=./img/logo/icon.ico --out logSendWin --electron-version 12.0.4 --asar --overwrite --ignore='logSendWin*|localConfig-dev.json'",
"build:mac": "electron-packager . logSend --platform=darwin --arch=x64 --icon=./img/logo/icon.icns --out logSendMac --electron-version 12.0.4 --asar --overwrite --ignore='logSendWin*|localConfig-dev.json'"
},
"keywords": [
"log",
"log-send",
"logSend",
"electron"
],
"author": "Yijio",
"license": "ISC",
"dependencies": {
"auto-launch": "^5.0.5",
"axios": "^0.21.1",
"electron-localstorage": "^1.0.5",
"nodemailer": "^6.5.0"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}