- 将项目品牌从nanobot重命名为Boardware Genius,更新所有相关文档、注释和日志输出 - 在web服务器中添加运行时环境变量同步功能,支持授权和后端身份配置 - 更新create-instance脚本以生成运行时环境文件 - 添加实例后端绑定功能到部署控制服务 - 修改入口脚本以加载运行时环境变量 - 更新前端和认证门户的相关描述文本
27 lines
597 B
JSON
27 lines
597 B
JSON
{
|
|
"name": "nanobot-whatsapp-bridge",
|
|
"version": "0.1.0",
|
|
"description": "WhatsApp bridge for Boardware Genius using Baileys",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsc && node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@whiskeysockets/baileys": "7.0.0-rc.9",
|
|
"ws": "^8.17.1",
|
|
"qrcode-terminal": "^0.12.0",
|
|
"pino": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.14.0",
|
|
"@types/ws": "^8.5.10",
|
|
"typescript": "^5.4.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
}
|
|
}
|