-
Notifications
You must be signed in to change notification settings - Fork 983
/
package.json
34 lines (34 loc) · 937 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": "chatgpt-wechatbot",
"version": "1.0.0",
"description": "",
"main": "lib/bundle.cjs.js",
"module": "lib/bundle.esm.js",
"type": "module",
"scripts": {
"dev": "node --loader ts-node/esm --inspect ./src/index.ts",
"test": "node --loader ts-node/esm --inspect ./src/auth.ts",
"lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock}/**/*.{ts,tsx}\" --fix",
"lint:prettier": "prettier --write \"src/**/*.{js,json,tsx,md}\"",
"lint:lint-staged": "lint-staged"
},
"keywords": [
"chatgpt",
"wechat",
"wechaty",
"微信机器人",
"微信助手"
],
"author": "Jin",
"license": "ISC",
"dependencies": {
"@types/node": "^18.11.11",
"@waylaidwanderer/chatgpt-api": "^1.33.1",
"qrcode-terminal": "^0.12.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"wechaty": "^1.20.2",
"wechaty-puppet-wechat": "^1.18.4"
}
}