-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.22 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
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",
"main": "src/index.js",
"author": "vikshan",
"license": "ISC",
"module": "commonjs",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "nodemon .",
"start": "node .",
"f": "prettier --write src",
"u": "git pull && npm update && npm run f",
"start-replit": "node src/index.js",
"prepare": "husky"
},
"homepage": "https://github.com/iamvikshan/amina#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iamvikshan/amina.git"
},
"bugs": {
"url": "https://github.com/iamvikshan/amina/issues/new/choose"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"@vitalets/google-translate-api": "^9.2.0",
"axios": "^1.7.7",
"btoa": "^1.2.1",
"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",
"dotenv": "^16.4.5",
"enhanced-ms": "^3.0.0",
"fixedsize-map": "^1.1.0",
"lavalink-client": "^2.4.1",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"mongoose": "^8.8.1",
"node-fetch": "^2.7.0",
"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.14.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.14.0",
"eslint-plugin-jsdoc": "^50.4.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "3.3.3",
"prettier-plugin-astro": "^0.14.1"
},
"keywords": [
"discord",
"discord.js",
"discord-bot",
"open-source",
"bot",
"multipurpose",
"multi-purpose-bot"
],
"_moduleAliases": {
"@root": ".",
"@handlers": "src/handlers/",
"@helpers": "src/helpers/",
"@schemas": "src/database/schemas/",
"@src": "src/",
"@structures": "src/structures/",
"@commands": "src/commands/"
}
}