├── .github └── workflows │ ├── auto-review-and-merge.yml │ └── sync.yml ├── .gitignore ├── .script ├── check-pr.js ├── ci-setup.sh └── sync │ └── dosync.sh ├── CNAME ├── LICENSE ├── README.md ├── _config.yml ├── _plugins └── prerun.rb ├── com └── hcyacg │ ├── BiliBili │ └── package.json │ └── pixiv │ └── package.json ├── io └── github │ ├── argonariod │ └── hammer-mirai-help │ │ └── package.json │ ├── gnuf0rce │ ├── debug-helper │ │ └── package.json │ ├── github-helper │ │ └── package.json │ ├── mirai-content-censor │ │ └── package.json │ ├── netdisk-filesync-plugin │ │ └── package.json │ └── rss-helper │ │ └── package.json │ ├── karlatemp │ └── luckperms │ │ └── package.json │ └── nambers │ └── MiraiCP-plugin │ └── package.json ├── net └── mamoe │ ├── chat-command │ └── package.json │ ├── mirai-api-http │ └── package.json │ ├── mirai-console-pure │ └── package.json │ ├── mirai-console-terminal │ └── package.json │ ├── mirai-console │ └── package.json │ ├── mirai-core-all │ └── package.json │ ├── mirai-login-solver-selenium │ └── package.json │ ├── mirai-silk-converter │ └── package.json │ └── mirai-slf4j-bridge │ └── package.json ├── org ├── bouncycastle │ └── bcprov-jdk15on │ │ └── package.json ├── itxtech │ ├── mcl-addon │ │ └── package.json │ ├── mcl │ │ └── package.json │ ├── mirai-js │ │ └── package.json │ ├── mirai-native │ │ └── package.json │ └── soyuz │ │ └── package.json └── mesagisto │ └── mirai-message-source │ └── package.json ├── protected ├── common.js ├── config.js ├── fill-package.js ├── gen-index.js └── page-build-prerun.js ├── tmp └── .gitignore ├── work └── blackbe │ └── mirai-plugin │ └── package.json └── xyz └── cssxsh ├── arknights-helper └── package.json ├── bilibili-helper └── package.json ├── meme-helper └── package.json ├── mirai ├── mirai-administrator │ └── package.json ├── mirai-device-generator │ └── package.json ├── mirai-hibernate-plugin │ └── package.json ├── mirai-selenium-plugin │ └── package.json ├── mirai-skia-plugin │ └── package.json └── mirai-tts-plugin │ └── package.json └── weibo-helper └── package.json /.github/workflows/auto-review-and-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/.github/workflows/auto-review-and-merge.yml -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/.gitignore -------------------------------------------------------------------------------- /.script/check-pr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/.script/check-pr.js -------------------------------------------------------------------------------- /.script/ci-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/.script/ci-setup.sh -------------------------------------------------------------------------------- /.script/sync/dosync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/.script/sync/dosync.sh -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | mcl.repo.mamoe.net -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/_config.yml -------------------------------------------------------------------------------- /_plugins/prerun.rb: -------------------------------------------------------------------------------- 1 | system("node protected/page-build-prerun.js") 2 | 3 | -------------------------------------------------------------------------------- /com/hcyacg/BiliBili/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/com/hcyacg/BiliBili/package.json -------------------------------------------------------------------------------- /com/hcyacg/pixiv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/com/hcyacg/pixiv/package.json -------------------------------------------------------------------------------- /io/github/argonariod/hammer-mirai-help/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/io/github/argonariod/hammer-mirai-help/package.json -------------------------------------------------------------------------------- /io/github/gnuf0rce/debug-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/io/github/gnuf0rce/debug-helper/package.json -------------------------------------------------------------------------------- /io/github/gnuf0rce/github-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/io/github/gnuf0rce/github-helper/package.json -------------------------------------------------------------------------------- /io/github/gnuf0rce/mirai-content-censor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/io/github/gnuf0rce/mirai-content-censor/package.json -------------------------------------------------------------------------------- /io/github/gnuf0rce/netdisk-filesync-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/io/github/gnuf0rce/netdisk-filesync-plugin/package.json -------------------------------------------------------------------------------- /io/github/gnuf0rce/rss-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/io/github/gnuf0rce/rss-helper/package.json -------------------------------------------------------------------------------- /io/github/karlatemp/luckperms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/io/github/karlatemp/luckperms/package.json -------------------------------------------------------------------------------- /io/github/nambers/MiraiCP-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/io/github/nambers/MiraiCP-plugin/package.json -------------------------------------------------------------------------------- /net/mamoe/chat-command/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/net/mamoe/chat-command/package.json -------------------------------------------------------------------------------- /net/mamoe/mirai-api-http/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/net/mamoe/mirai-api-http/package.json -------------------------------------------------------------------------------- /net/mamoe/mirai-console-pure/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/net/mamoe/mirai-console-pure/package.json -------------------------------------------------------------------------------- /net/mamoe/mirai-console-terminal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/net/mamoe/mirai-console-terminal/package.json -------------------------------------------------------------------------------- /net/mamoe/mirai-console/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/net/mamoe/mirai-console/package.json -------------------------------------------------------------------------------- /net/mamoe/mirai-core-all/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/net/mamoe/mirai-core-all/package.json -------------------------------------------------------------------------------- /net/mamoe/mirai-login-solver-selenium/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/net/mamoe/mirai-login-solver-selenium/package.json -------------------------------------------------------------------------------- /net/mamoe/mirai-silk-converter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/net/mamoe/mirai-silk-converter/package.json -------------------------------------------------------------------------------- /net/mamoe/mirai-slf4j-bridge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/net/mamoe/mirai-slf4j-bridge/package.json -------------------------------------------------------------------------------- /org/bouncycastle/bcprov-jdk15on/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/org/bouncycastle/bcprov-jdk15on/package.json -------------------------------------------------------------------------------- /org/itxtech/mcl-addon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/org/itxtech/mcl-addon/package.json -------------------------------------------------------------------------------- /org/itxtech/mcl/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/org/itxtech/mcl/package.json -------------------------------------------------------------------------------- /org/itxtech/mirai-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/org/itxtech/mirai-js/package.json -------------------------------------------------------------------------------- /org/itxtech/mirai-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/org/itxtech/mirai-native/package.json -------------------------------------------------------------------------------- /org/itxtech/soyuz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/org/itxtech/soyuz/package.json -------------------------------------------------------------------------------- /org/mesagisto/mirai-message-source/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/org/mesagisto/mirai-message-source/package.json -------------------------------------------------------------------------------- /protected/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/protected/common.js -------------------------------------------------------------------------------- /protected/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/protected/config.js -------------------------------------------------------------------------------- /protected/fill-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/protected/fill-package.js -------------------------------------------------------------------------------- /protected/gen-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/protected/gen-index.js -------------------------------------------------------------------------------- /protected/page-build-prerun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/protected/page-build-prerun.js -------------------------------------------------------------------------------- /tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /work/blackbe/mirai-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/work/blackbe/mirai-plugin/package.json -------------------------------------------------------------------------------- /xyz/cssxsh/arknights-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/xyz/cssxsh/arknights-helper/package.json -------------------------------------------------------------------------------- /xyz/cssxsh/bilibili-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/xyz/cssxsh/bilibili-helper/package.json -------------------------------------------------------------------------------- /xyz/cssxsh/meme-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/xyz/cssxsh/meme-helper/package.json -------------------------------------------------------------------------------- /xyz/cssxsh/mirai/mirai-administrator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/xyz/cssxsh/mirai/mirai-administrator/package.json -------------------------------------------------------------------------------- /xyz/cssxsh/mirai/mirai-device-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/xyz/cssxsh/mirai/mirai-device-generator/package.json -------------------------------------------------------------------------------- /xyz/cssxsh/mirai/mirai-hibernate-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/xyz/cssxsh/mirai/mirai-hibernate-plugin/package.json -------------------------------------------------------------------------------- /xyz/cssxsh/mirai/mirai-selenium-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/xyz/cssxsh/mirai/mirai-selenium-plugin/package.json -------------------------------------------------------------------------------- /xyz/cssxsh/mirai/mirai-skia-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/xyz/cssxsh/mirai/mirai-skia-plugin/package.json -------------------------------------------------------------------------------- /xyz/cssxsh/mirai/mirai-tts-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/xyz/cssxsh/mirai/mirai-tts-plugin/package.json -------------------------------------------------------------------------------- /xyz/cssxsh/weibo-helper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-mirai/mirai-repo-mirror/HEAD/xyz/cssxsh/weibo-helper/package.json --------------------------------------------------------------------------------