forked from appujet/lavamusic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.08 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
{
"name": "lavamusic",
"version": "4.3.3",
"description": "LavaMusic is a music bot for Discord, written in JavaScript using the Discord.js, Typescript, Shoukaku (Lavalink) library.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "npm run clean:no-log && node dist/index.js",
"db:push": "npx prisma db push",
"db:migrate": "npx prisma migrate dev --name init",
"build": "tsc --project tsconfig.json",
"clean": "node ./scripts/clean.js && npm run build",
"clean:no-log": "node ./scripts/clean-no-log.js && npm run build",
"lint": "biome lint --write ./src",
"format": "biome check --write ./src"
},
"lint-staged": {
"*.ts": [
"biome check --write",
"biome format --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/appujet/lavamusic.git"
},
"keywords": [
"discord",
"music",
"bot",
"lavalink",
"shoukaku",
"lavamusic",
"typescript",
"prisma"
],
"author": "appujet",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/appujet/lavamusic/issues"
},
"homepage": "https://github.com/appujet/lavamusic#readme",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.9",
"@types/signale": "^1.4.7",
"lint-staged": "^15.2.7",
"prisma": "^5.16.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"dependencies": {
"@prisma/client": "^5.16.1",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"node-system-stats": "^1.3.0",
"shoukaku": "github:shipgirlproject/Shoukaku",
"signale": "^1.4.0",
"tslib": "^2.6.3",
"undici": "^6.19.2"
},
"signale": {
"displayScope": true,
"displayBadge": true,
"displayDate": true,
"displayFilename": true,
"displayLabel": true,
"displayTimestamp": true,
"underlineLabel": true
}
}