-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 941 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
{
"name": "discord-bot",
"version": "1.1.0",
"description": "A Discord bot for use with your friends",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"start": "node dist/index.js",
"lint": "eslint . --ext .js,.ts"
},
"keywords": [
"discord",
"bot",
"funny"
],
"author": "Racer159",
"license": "ISC",
"dependencies": {
"@types/giphy-api": "^2.0.3",
"@types/urban-dictionary": "^3.0.0",
"config": "^3.3.9",
"cowsay": "^1.5.0",
"discord.js": "^14.7.1",
"fortune-teller": "^0.1.2",
"natural": "^5.2.4",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@types/config": "3.3.0",
"@types/natural": "^5.1.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.33.0",
"typescript": "^4.9.4"
}
}