-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 760 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "wework-bot-cli",
"type": "module",
"version": "1.0.0",
"description": "Send Markdown messages to WeCom bot via CLI",
"bin": {
"wework-bot": "dist/index.js"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "node esbuild.config.js"
},
"keywords": [
"wecom",
"wechat",
"bot",
"cli",
"markdown"
],
"author": "Mutter45 <mutter45@foxmail.com>",
"homepage": "https://github.com/Mutter45/wework-bot-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Mutter45/wework-bot-cli"
},
"license": "MIT",
"dependencies": {
"axios": "^1.9.0",
"commander": "^13.1.0"
},
"devDependencies": {
"esbuild": "^0.25.4"
}
}