-
Notifications
You must be signed in to change notification settings - Fork 770
/
package.json
54 lines (54 loc) · 1.31 KB
/
package.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "wechat-bot",
"version": "1.0.0-alpha.1",
"description": "wechat-bot",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "node ./cli.js",
"format": "prettier --write ./src",
"start": "node ./cli.js",
"test": "node ./src/wechaty/testMessage.js",
"test-openai": "node ./src/openai/__test__.js",
"test-xunfei": "node ./src/xunfei/__test__.js",
"test-kimi": "node ./src/kimi/__test__.js",
"test-dify": "node ./src/dify/__test__.js",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,md}": [
"prettier --write"
]
},
"bin": {
"we": "./cli.js",
"wb": "./cli.js",
"wechat-bot": "./cli.js"
},
"author": "荣顶",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"chatgpt": "^2.5.2",
"commander": "^12.0.0",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"inquirer": "^9.2.16",
"openai": "^4.52.0",
"p-timeout": "^6.0.0",
"qrcode-terminal": "^0.12.0",
"remark": "^14.0.2",
"strip-markdown": "^5.0.0",
"wechaty": "^1.20.2",
"wechaty-puppet-wechat": "^1.18.4",
"wechaty-puppet-wechat4u": "^1.14.14",
"ws": "^8.16.0"
},
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"puppeteer": "13.5.1",
"puppeteer-core": "13.5.1"
}
}