forked from atorber/chatflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.96 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
{
"name": "openai-qa-bot",
"version": "0.4.0",
"description": "openai-qa-bot",
"type": "module",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"scripts": {
"start": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node index.ts",
"dev-ts": "ts-node-esm dev.ts",
"dev": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node dev.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\" \"tests/**/*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/atorber/wechaty-wx-openai-link.git"
},
"keywords": [],
"author": "atorber <atorber@163.com>",
"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",
"dotenv": "^16.0.0",
"exceljs": "^4.3.0",
"file-box": "^1.4.12",
"forever": "^4.0.3",
"fs": "^0.0.1-security",
"moment": "^2.29.1",
"node-xlsx": "^0.21.0",
"pm2": "^5.2.0",
"puppeteer": "^14.1.1",
"puppeteer-core": "^14.1.1",
"qrcode-terminal": "^0.12.0",
"request-promise": "^4.2.6",
"socket.io": "^2.1.0",
"socket.io-client": "^2.4.0",
"uuid": "^8.3.2",
"wechaty": "^1.18.1",
"wechaty-plugin-contrib": "^1.0.18",
"wechaty-puppet": "^1.18.3",
"wechaty-puppet-xp": "^1.11.13"
},
"devDependencies": {
"@chatie/eslint-config": "^1.0.4",
"@chatie/tsconfig": "^4.6.3",
"@types/request-promise": "^4.1.48",
"check-node-version": "^4.2.1",
"is-pr": "^2.0.0",
"typescript": "^4.4.4"
}
}