forked from fuergaosi233/wechat-chatgpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 813 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
35
36
{
"name": "wechat-chatgpt",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"export": "dist/main.js",
"scripts": {
"dev": "nodemon --exec node --watch config.yaml --loader ts-node/esm src/main.ts",
"build": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"chatgpt": "^2.0.1",
"dotenv": "^16.0.3",
"execa": "^6.1.0",
"qrcode": "^1.5.1",
"uuid": "^9.0.0",
"wechaty": "^1.20.2",
"wechaty-puppet-wechat": "^1.18.4",
"yaml": "^2.1.3"
},
"devDependencies": {
"@types/qrcode": "^1.5.0",
"@types/uuid": "^9.0.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1"
},
"nodemonConfig": {
"watch": "src",
"ext": "ts",
"exec": "node --loader ts-node/esm src/main.ts",
"delay": 500
},
"type": "module"
}