├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── LICENSE ├── package.json ├── readme.md ├── src ├── assets.ts ├── bot.ts ├── index.ts ├── internal.ts ├── media.ts ├── message.ts ├── types.ts ├── utils.ts └── ws.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | tsconfig.tsbuildinfo 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/readme.md -------------------------------------------------------------------------------- /src/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/src/assets.ts -------------------------------------------------------------------------------- /src/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/src/bot.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/src/internal.ts -------------------------------------------------------------------------------- /src/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/src/media.ts -------------------------------------------------------------------------------- /src/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/src/message.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/src/ws.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/idranme/koishi-plugin-adapter-red/HEAD/tsconfig.json --------------------------------------------------------------------------------