├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── .puppeteerrc.cjs ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── lib ├── common │ └── common.js ├── config │ └── config.js ├── index.js ├── main.js ├── miao-yunzai.js ├── plugins │ ├── handler.js │ ├── index.js │ ├── loader.js │ ├── plugin.js │ └── runtime.js ├── puppeteer │ └── puppeteer.js └── renderer │ ├── loader.js │ └── renderer.js ├── package.json ├── plugins ├── .gitignore ├── example │ ├── add.js │ ├── disablePrivate.js │ ├── friend.js │ ├── invite.js │ ├── quit.js │ ├── shells.js │ ├── 主动复读.js │ └── 进群退群通知.js └── other │ ├── restart.js │ ├── sendLog.js │ └── update.js ├── pm2.config.cjs ├── renderers └── puppeteer │ ├── index.js │ └── lib │ └── puppeteer.js └── yunzai.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Node dependencies 2 | node_modules 3 | 4 | # 旧版文件夹 5 | config -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.puppeteerrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/.puppeteerrc.cjs -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/README.md -------------------------------------------------------------------------------- /lib/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/lib/common/common.js -------------------------------------------------------------------------------- /lib/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/lib/config/config.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | export * from 'yunzaijs' 2 | -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/lib/main.js -------------------------------------------------------------------------------- /lib/miao-yunzai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/lib/miao-yunzai.js -------------------------------------------------------------------------------- /lib/plugins/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/lib/plugins/handler.js -------------------------------------------------------------------------------- /lib/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/lib/plugins/index.js -------------------------------------------------------------------------------- /lib/plugins/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/lib/plugins/loader.js -------------------------------------------------------------------------------- /lib/plugins/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/lib/plugins/plugin.js -------------------------------------------------------------------------------- /lib/plugins/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/lib/plugins/runtime.js -------------------------------------------------------------------------------- /lib/puppeteer/puppeteer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/lib/puppeteer/puppeteer.js -------------------------------------------------------------------------------- /lib/renderer/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/lib/renderer/loader.js -------------------------------------------------------------------------------- /lib/renderer/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/lib/renderer/renderer.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/package.json -------------------------------------------------------------------------------- /plugins/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/plugins/.gitignore -------------------------------------------------------------------------------- /plugins/example/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/plugins/example/add.js -------------------------------------------------------------------------------- /plugins/example/disablePrivate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/plugins/example/disablePrivate.js -------------------------------------------------------------------------------- /plugins/example/friend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/plugins/example/friend.js -------------------------------------------------------------------------------- /plugins/example/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/plugins/example/invite.js -------------------------------------------------------------------------------- /plugins/example/quit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/plugins/example/quit.js -------------------------------------------------------------------------------- /plugins/example/shells.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/plugins/example/shells.js -------------------------------------------------------------------------------- /plugins/example/主动复读.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/plugins/example/主动复读.js -------------------------------------------------------------------------------- /plugins/example/进群退群通知.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/plugins/example/进群退群通知.js -------------------------------------------------------------------------------- /plugins/other/restart.js: -------------------------------------------------------------------------------- 1 | export { Restart } from '@yunzaijs/system' 2 | -------------------------------------------------------------------------------- /plugins/other/sendLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/plugins/other/sendLog.js -------------------------------------------------------------------------------- /plugins/other/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/plugins/other/update.js -------------------------------------------------------------------------------- /pm2.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/pm2.config.cjs -------------------------------------------------------------------------------- /renderers/puppeteer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/renderers/puppeteer/index.js -------------------------------------------------------------------------------- /renderers/puppeteer/lib/puppeteer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/renderers/puppeteer/lib/puppeteer.js -------------------------------------------------------------------------------- /yunzai.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yunzaijs/bot/HEAD/yunzai.config.js --------------------------------------------------------------------------------