-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.75 KB
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
{
"name": "egbert",
"version": "1.0.0",
"dependencies": {
"@slack/bolt": "^3.13.1",
"@types/node-cache": "^4.2.5",
"aws-sdk": "^2.1566.0",
"axios": "^1.3.5",
"discord.js": "^14.14.1",
"gpt-3-encoder": "^1.1.4",
"he": "^1.2.0",
"json5": "^2.2.3",
"langchain": "^0.0.91",
"lodash.escaperegexp": "^4.1.2",
"node-cache": "^5.1.2",
"node-cron": "^3.0.3",
"node-persist": "^4.0.1",
"openai": "^4.28.0",
"path": "^0.12.7",
"rcon-client": "^4.2.3",
"tail": "^2.2.6",
"telegraf": "^4.12.2",
"typegram": "^5.0.0",
"typescript": "^5.0.4",
"weaviate-ts-client": "^1.3.1"
},
"description": "An ironic gpt-based chatbot",
"main": "index.js",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@types/he": "^1.2.3",
"@types/jest": "^29.5.1",
"@types/lodash.escaperegexp": "^4.1.9",
"@types/node": "^18.16.0",
"@types/node-cron": "^3.0.11",
"@types/node-persist": "^3.1.8",
"@types/tail": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1"
},
"scripts": {
"build": "npx tsc",
"watch": "npx tsc -w",
"start": "npx ts-node src/main.ts",
"test": "jest",
"prettier": "prettier --check src",
"prettier:fix": "prettier --write src",
"lint": "eslint . --ext .ts,.tsx",
"check": "tsc --noEmit",
"dalle": "ts-node src/scripts/dalle.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hkniberg/egbert.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hkniberg/egbert/issues"
},
"homepage": "https://github.com/hkniberg/egbert#readme"
}