├── .editorconfig ├── .eslintignore ├── .eslintrc.yml ├── .gitattributes ├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .npmignore ├── LICENSE ├── package.json ├── readme.md ├── src ├── bot │ ├── base.ts │ ├── cqcode.ts │ ├── index.ts │ ├── message.ts │ └── qqguild.ts ├── http.ts ├── index.ts ├── types.ts ├── utils.ts └── ws.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /external 2 | 3 | temp 4 | dist 5 | lib 6 | tests 7 | 8 | *.js 9 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | tsconfig.tsbuildinfo 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/readme.md -------------------------------------------------------------------------------- /src/bot/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/src/bot/base.ts -------------------------------------------------------------------------------- /src/bot/cqcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/src/bot/cqcode.ts -------------------------------------------------------------------------------- /src/bot/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/src/bot/index.ts -------------------------------------------------------------------------------- /src/bot/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/src/bot/message.ts -------------------------------------------------------------------------------- /src/bot/qqguild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/src/bot/qqguild.ts -------------------------------------------------------------------------------- /src/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/src/http.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/src/ws.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koishijs/koishi-plugin-adapter-onebot/HEAD/tsconfig.json --------------------------------------------------------------------------------