-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "coze-on-wechat",
"version": "0.0.1",
"description": "微信对接 Coze 智能体",
"author": "OSInsight",
"main": "dist/main.js",
"scripts": {
"dev": "nodemon --exec ts-node src/main.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/main.js",
"pm2:start": "npm run build && pm2 start dist/main.js --name cow --time",
"pm2:stop": "pm2 stop cow",
"pm2:restart": "npm run build && pm2 restart cow",
"pm2:delete": "pm2 delete cow"
},
"engines": {
"node": ">=20"
},
"keywords": [
"扣子",
"Coze",
"Wechat",
"微信",
"微信机器人",
"微信助手",
"智能机器人",
"对话机器人",
"wechaty",
"node",
"js"
],
"dependencies": {
"axios": "^1.7.7",
"qrcode": "^1.5.1",
"wechaty": "^1.20.2",
"wechaty-puppet-wechat": "^1.18.4",
"yaml": "^2.1.3"
},
"devDependencies": {
"@types/qrcode": "^1.5.0",
"nodemon": "^2.0.20",
"pm2": "^5.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.6.3"
},
"nodemonConfig": {
"watch": "src",
"ext": "ts",
"exec": "ts-node src/main.ts",
"delay": 500
},
"license": "MIT"
}