-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 991 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
35
36
37
38
39
40
41
42
43
{
"name": "discord-cleverbot",
"version": "5.2.0-alpha",
"private": true,
"description": "Chatbot for Discord",
"keywords": [
"bot",
"ai",
"discord",
"chatbot",
"discord-js"
],
"homepage": "https://github.com/JstnMcBrd/discord-cleverbot",
"bugs": "https://github.com/JstnMcBrd/discord-cleverbot/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/JstnMcBrd/discord-cleverbot.git"
},
"license": "UNLICENSED",
"author": "Justin McBride",
"type": "module",
"scripts": {
"build": "tsc",
"commands": "node --env-file=.env dist/deployCommands.js",
"lint": "eslint .",
"start": "node --env-file=.env dist/main.js",
"test": "echo \"No tests\""
},
"dependencies": {
"@colors/colors": "^1.6.0",
"cleverbot-free": "^2.0.3",
"discord.js": "^14.17.3"
},
"devDependencies": {
"@jstnmcbrd/eslint-config": "^1.0.0",
"@types/node": "^22.10.10",
"eslint": "^8.57.1",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.6.0"
}
}