-
-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e7a2a5
commit cae511f
Showing
3 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"name": "@koishijs/plugin-adapter-wecom", | ||
"description": "Wecom Adapter for Koishi", | ||
"version": "1.0.0", | ||
"main": "lib/index.js", | ||
"typings": "lib/index.d.ts", | ||
"files": [ | ||
"lib" | ||
], | ||
"author": "LittleC <[email protected]>", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/satorijs/satori.git", | ||
"directory": "adapters/wecom" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/satorijs/satori/issues" | ||
}, | ||
"homepage": "https://koishi.chat/plugins/adapter/wecom.html", | ||
"keywords": [ | ||
"bot", | ||
"adapter", | ||
"chatbot", | ||
"koishi", | ||
"wecom" | ||
], | ||
"koishi": { | ||
"description": { | ||
"en": "Wecom Adapter", | ||
"zh": "企业微信适配器" | ||
}, | ||
"service": { | ||
"implements": [ | ||
"adapter" | ||
] | ||
} | ||
}, | ||
"peerDependencies": { | ||
"koishi": "^4.14.0" | ||
}, | ||
"devDependencies": { | ||
"koishi": "^4.14.0" | ||
}, | ||
"dependencies": { | ||
"@satorijs/adapter-wecom": "^1.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { WecomBot } from '@satorijs/adapter-wecom' | ||
|
||
export default WecomBot | ||
export * from '@satorijs/adapter-wecom' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"extends": "../../../tsconfig.base", | ||
"compilerOptions": { | ||
"outDir": "lib", | ||
"rootDir": "src", | ||
}, | ||
"include": [ | ||
"src", | ||
], | ||
} |