diff --git a/.vscode/settings.json b/.vscode/settings.json index 5fa7ab956a8138b32f02a9162fdb32edb0906e8a..81362cdbdfcc684769b5d55f8814b82e4320027d 100755 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -92,6 +92,7 @@ "thumbnailurl", "wechat", "weixin", + "wxwork", "zbeekman", "zixia" ], diff --git a/src/puppet-config.ts b/src/puppet-config.ts index ed5fe06f8cc3c0389564d2969a1c44cbd3803dae..f5451ece1598098d9895c2fba84f5304a8791c56 100644 --- a/src/puppet-config.ts +++ b/src/puppet-config.ts @@ -1,3 +1,4 @@ +/* eslint-disable sort-keys */ /** * Wechaty Chatbot SDK - https://github.com/wechaty/wechaty * @@ -40,10 +41,15 @@ export const PUPPET_DEPENDENCIES = { /** * Wechaty External Puppets */ - 'wechaty-puppet-official-account' : '^0.2.2', // https://www.npmjs.com/package/wechaty-puppet-official-account 'wechaty-puppet-padplus' : '^0.7.30', // https://www.npmjs.com/package/wechaty-puppet-padplus 'wechaty-puppet-puppeteer' : '^0.23.1', // https://www.npmjs.com/package/wechaty-puppet-puppeteer 'wechaty-puppet-wechat4u' : '^0.17.4', // https://www.npmjs.com/package/wechaty-puppet-wechat4u + + /** + * Other + */ + 'wechaty-puppet-gitter' : '^0.3.1', // https://www.npmjs.com/package/wechaty-puppet-gitter + 'wechaty-puppet-official-account' : '^0.2.2', // https://www.npmjs.com/package/wechaty-puppet-official-account } export type PuppetModuleName = keyof typeof PUPPET_DEPENDENCIES