forked from ductridev/multi-distube-bots
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.97 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.97 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "bungo-music",
"version": "1.0.0",
"description": "BuNgo-music is a music bot for Discord, written in JavaScript using the Discord.js, Typescript, lavalink-client (Lavalink) library.",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"dev:dashboard": "cd dashboard && npm run dev",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:dashboard\"",
"start": "node dist/index.js",
"build": "tsc",
"build:dashboard": "cd dashboard && npm run build",
"build:all": "npm run build && npm run build:dashboard",
"db:push": "npx prisma db push",
"db:migrate": "npx prisma migrate dev --name init",
"db:seed": "npx prisma db seed",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"seed": "npm run db:push && npm run db:seed",
"postinstall": "patch-package"
},
"prisma": {
"seed": "npx ts-node prisma/seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ductridev/multi-distube-bots.git"
},
"keywords": [
"discord",
"music",
"bot",
"lavalink",
"lavalink-client",
"bungo-music",
"typescript",
"prisma"
],
"author": "ductridev",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ductridev/multi-distube-bots/issues"
},
"homepage": "https://github.com/ductridev/multi-distube-bots#readme",
"devDependencies": {
"@appujet/eslint-config": "^0.0.3",
"@types/i18n": "^0.13.12",
"@types/node": "^25.0.2",
"@types/node-cron": "^3.0.11",
"@types/signale": "^1.4.7",
"@types/yargs": "^17.0.35",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"nodemon": "^3.1.11",
"patch-package": "^8.0.1",
"prettier": "^3.7.4",
"prisma": "^6.19.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.2.0",
"@fastify/helmet": "^13.0.2",
"@fastify/jwt": "^10.0.0",
"@fastify/sensible": "^6.0.4",
"@prisma/client": "^6.19.0",
"@swc/core": "^1.15.8",
"@top-gg/sdk": "^3.1.6",
"bullmq": "^5.66.4",
"discord.js": "^14.25.1",
"dotenv": "^17.2.3",
"fastify": "^5.6.2",
"fastify-plugin": "^5.1.0",
"genius-lyrics-api": "^3.2.1",
"i18n": "^0.15.3",
"ioredis": "^5.9.1",
"lavalink-client": "^2.7.7",
"mongodb": "^7.0.0",
"node-cron": "^4.2.1",
"node-system-stats": "^1.3.0",
"reflect-metadata": "^0.2.2",
"signale": "^1.4.0",
"socket.io": "^4.8.3",
"topgg-autoposter": "^2.0.2",
"tslib": "^2.8.1",
"tsyringe": "^4.10.0",
"undici": "^7.18.2",
"yargs": "^18.0.0",
"zod": "^3.25.76"
},
"signale": {
"displayScope": true,
"displayBadge": true,
"displayDate": true,
"displayFilename": true,
"displayLabel": true,
"displayTimestamp": true,
"underlineLabel": true
}
}