forked from whatagoodbot/TTFM-Bot-Artist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.54 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
{
"name": "Mr_Roboto",
"version": "2.0.0",
"description": "A bot to interact with users in chat on hangout.fm",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "NODE_ENV=development nodemon --ignore data/ --ignore html/ -r dotenv/config src/index.js",
"lint": "standard",
"lint:fix": "standard --fix",
"start": "node src/index.js",
"test": "npm run lint && nyc --reporter=html --reporter=text mocha"
},
"repository": {
"type": "git",
"url": "[email protected]:jodrell2000/TTLive-Mr-Roboto2.git"
},
"keywords": [
"bot",
"ttlive",
"ttl",
"tt.live",
"turntable"
],
"standard": {
"env": [
"mocha"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.3.6",
"dotenv": "^16.0.2",
"mocha": "^10.0.0",
"nodemon": "^3.1.4",
"nyc": "^15.1.0",
"standard": "^17.0.0"
},
"dependencies": {
"axios": "^1.6.8",
"bard-ai": "^2.0.3",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"country-code-lookup": "^0.1.3",
"dayjs": "^1.11.11",
"express": "^4.19.2",
"express-session": "^1.18.0",
"fast-json-patch": "^3.1.1",
"moment": "^2.30.1",
"mysql": "^2.18.1",
"node-fetch": "^3.2.10",
"node-storage": "^0.0.9",
"openai": "^4.52.0",
"pug": "^3.0.3",
"redis": "^4.6.7",
"remove-markdown": "^0.5.0",
"repeat": "^2.0.4",
"request": "^2.88.2",
"socket.io-client": "^4.5.2",
"ttfm-socket": "^0.2.6",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"ws": "^8.14.2"
}
}