forked from novicezk/wechat-midjourney
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 953 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
{
"name": "wechat-midjourney",
"version": "2.0.2",
"description": "",
"main": "dist/main.js",
"export": "dist/main.js",
"scripts": {
"dev": "nodemon --exec node --loader ts-node/esm src/main.ts",
"serve": "node --loader ts-node/esm src/main.ts"
},
"author": "novicezk",
"license": "Apache 2",
"dependencies": {
"axios": "^1.3.6",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"file-box": "^1.4.15",
"log4js": "^6.9.1",
"qrcode": "^1.5.1",
"https-proxy-agent": "^6.1.0",
"wechaty": "^1.20.2",
"wechaty-puppet-wechat": "^1.18.4"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/qrcode": "^1.5.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"
}