forked from saiteja-madha/discord-js-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.13 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.13 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "discord-js-bot",
"version": "5.5.0",
"description": "An open-source, multipurpose discord bot built using discord-js",
"module": "dist/index.js",
"type": "module",
"author": "Vikshan",
"license": "ISC",
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"build": "tsc",
"dev": "bun --watch src/index.ts",
"start": "bun dist/index.js",
"clean": "rm -rf dist",
"prebuild": "bun run clean",
"lint": "eslint src --ext .ts",
"prepare": "husky",
"watch": "tsc -w",
"f": "prettier --write \"src/**/*.ts\""
},
"homepage": "https://github.com/vixshan/amina#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vixshan/amina.git"
},
"bugs": {
"url": "https://github.com/vixshan/amina/issues/new/choose"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"@vitalets/google-translate-api": "^9.2.0",
"axios": "^1.7.7",
"common-tags": "^1.8.2",
"discord-gamecord": "^4.4.2",
"discord-giveaways": "^6.0.1",
"discord-together": "^1.3.31",
"discord.js": "^14.16.3",
"enhanced-ms": "^3.0.0",
"fixedsize-map": "^1.1.0",
"lavalink-client": "^2.4.1",
"moment": "^2.30.1",
"mongoose": "^8.8.2",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"pretty-ms": "^7.0.1",
"sourcebin_js": "^0.0.3-ignore",
"string-progressbar": "^1.0.4",
"table": "^6.8.2"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/bun": "^1.1.13",
"@types/node": "^22.9.2",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"eslint-plugin-jsdoc": "^50.5.0",
"husky": "^9.1.7",
"prettier": "3.3.3",
"typescript": "^5.7.2"
},
"keywords": [
"discord",
"discord.js",
"discord-bot",
"open-source",
"bot",
"multipurpose",
"multi-purpose-bot",
"bun"
],
"imports": {
"@/*": "./",
"@handlers/*": "./src/handlers/",
"@helpers/*": "./src/helpers/",
"@schemas/*": "./src/database/schemas/",
"@structures/*": "./src/structures/",
"@commands/*": "./src/commands/",
"@src/*": "./src/*"
}
}