-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 813 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 813 Bytes
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
{
"name": "bookbot",
"version": "1.0.0",
"description": "Discord bot which uses the Google Books API to display info about books.",
"main": "src/index.ts",
"scripts": {
"build": "yarn tsc",
"dev": "yarn tsc -w &; yarn nodemon dist/index.js"
},
"keywords": [
"discord-bot",
"bookbot",
"djs"
],
"author": "rv178, Maks_",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"canvas": "^3.1.0",
"discord.js": "^14.17.3",
"dotenv": "^16.4.7",
"glob": "^11.0.1",
"mongoose": ">=8.10.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^22.13.1",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.19.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}