-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
34 lines (34 loc) · 841 Bytes
/
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
{
"name": "wechat-summarize-bot",
"version": "0.0.1",
"description": "wechaty summarize bot",
"author": "yutou",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"microsoft-cognitiveservices-speech-sdk": "1.32.0",
"moment": "^2.29.4",
"qrcode-terminal": "^0.12.0",
"wechaty": "^1.19.10",
"wechaty-puppet": "^1.19.6",
"wechaty-puppet-padlocal": "^1.11.18",
"yutou_cn_mdimg": "^0.2.10"
},
"devDependencies": {
"cross-env": "^7.0.3",
"pm2": "^5.1.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"scripts": {
"watch": "npx tsc & npx pm2 start dist/main.js --attach",
"summarize": "npx ts-node ./src/summarize.ts",
"build": "npx tsc"
},
"engines": {
"node": ">= 16",
"npm": ">=7"
}
}