forked from atorber/chatflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.13 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "openai-qa-bot",
"version": "1.11.3",
"description": "openai-qa-bot",
"type": "module",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"scripts": {
"start": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node ./src/bot.ts",
"start:index": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node ./src/index.ts",
"start:notls": "cross-env WECHATY_PUPPET_SERVICE_NO_TLS_INSECURE_CLIENT=true NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node ./src/bot.ts",
"start:store": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node ./src/plugins/store-messages-locally.ts",
"start:meet": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node ./src/plugins/store-messages-locally.ts",
"sys-init": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node ./src/init.ts",
"init": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node ./src/init.ts",
"checker": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node ./src/puppet-checker.ts",
"rm-temp": "rm -r temp; mkdir temp",
"rm-cache": "rm -r cache; mkdir cache",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:md",
"lint:md": "markdownlint README.md",
"lint:ts": "tsc --isolatedModules --noEmit",
"lint:es": "eslint \"src/**/*.ts\" \"tests/**/*.spec.ts\" --ignore-pattern tests/fixtures/",
"lint-fix": "eslint --fix \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/atorber/wechaty-wx-openai-link.git"
},
"keywords": [],
"author": "atorber <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/atorber/wechaty-wx-openai-link/issues"
},
"homepage": "https://github.com/atorber/wechaty-wx-openai-link#readme",
"dependencies": {
"@vikadata/vika": "^1.0.5",
"axios": "^1.4.0",
"chatgpt": "^1.1.3",
"dotenv": "^16.0.0",
"exceljs": "^4.3.0",
"fast-csv": "^4.3.6",
"file-box": "^1.4.12",
"fs": "^0.0.1-security",
"html-to-docx": "^1.8.0",
"install": "^0.13.0",
"moment": "^2.29.1",
"mqtt": "^4.3.7",
"nedb-promises": "^6.2.1",
"njwt": "^1.2.0",
"node-schedule": "^2.1.0",
"node-xlsx": "^0.21.0",
"npm": "^9.6.4",
"openai-sdk": "^1.0.1",
"qrcode-terminal": "^0.12.0",
"request": "^2.88.0",
"request-promise": "^4.2.6",
"socket.io": "^2.1.0",
"socket.io-client": "^2.4.0",
"uuid": "^9.0.0",
"wechaty": "^1.20.2",
"wechaty-plugin-contrib": "^1.0.18",
"wechaty-puppet-engine": "^1.0.20",
"wechaty-puppet-padlocal": "^1.11.13",
"wechaty-puppet-service": "^1.19.8",
"wechaty-puppet-wechat4u": "^1.13.15",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@chatie/eslint-config": "^1.0.4",
"@chatie/git-scripts": "^0.6.2",
"@chatie/tsconfig": "^4.6.3",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/qrcode-terminal": "^0.12.0",
"@types/request-promise": "^4.1.48",
"check-node-version": "^4.2.1",
"cross-env": "^7.0.3",
"is-pr": "^2.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}