LotteryAutoScript/package.json
shanmite 266a657a8f feat: 日志相关
- 彩色输出
- 环境变量LOTTERY_LOG_LEVEL更改日志等级
feat: 设置相关
-  lottery_loop_wait 抽奖循环
- check_loop_wait 检奖循环
- clear_loop_wait 清理循环
2021-07-16 23:31:58 +08:00

46 lines
1.1 KiB
JSON

{
"name": "lottery-in-bili",
"version": "3.0.0",
"description": "自动抽奖",
"main": "main.js",
"scripts": {
"start": "node main.js start",
"clear": "node main.js clear",
"check": "node main.js check",
"pkg_x86": "npx pkg . && PowerShell .\\script\\pkg\\pkg.ps1",
"pkg_clean_dist": "PowerShell -Command \"& {Remove-Item -Path .\\dist\\ -Recurse}\"",
"pkg_arm": "npx pkg -t linux-arm -o dist/lottery-in-bili-linux-arm main.js"
},
"bin": "main.js",
"pkg": {
"targets": [
"linux-x64",
"win-x64",
"macos-x64"
],
"outputPath": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/shanmite/AutoScript.git"
},
"keywords": [
"auto",
"nodejs"
],
"author": "shanmite",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/shanmite/AutoScript/issues"
},
"homepage": "https://github.com/shanmite/AutoScript#readme",
"devDependencies": {
"eslint": "^7.17.0",
"pkg": "^5.2.1"
},
"dependencies": {
"chalk": "^4.1.1",
"nodemailer": "^6.5.0",
"unzipper": "^0.10.11"
}
}