-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 929 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
37
38
39
40
41
42
43
{
"name": "wechat-chatgpt",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"export": "dist/main.js",
"scripts": {
"dev": "nodemon --exec node --loader ts-node/esm src/main.ts",
"build": "tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"async-retry": "^1.3.3",
"dotenv": "^16.0.3",
"execa": "^6.1.0",
"gpt3-tokenizer": "^1.1.5",
"openai": "^3.2.1",
"qrcode": "^1.5.1",
"uuid": "^9.0.0",
"wechaty": "^1.20.2",
"wechaty-puppet-wechat": "^1.18.4"
},
"devDependencies": {
"@types/async-retry": "^1.4.5",
"@types/qrcode": "^1.5.0",
"@types/uuid": "^9.0.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1"
},
"nodemonConfig": {
"watch": [
"src/*.ts"
],
"ignore": [
"src/main.ts"
],
"ext": "ts",
"exec": "node --loader ts-node/esm src/main.ts",
"delay": 500
},
"type": "module"
}