forked from appujet/lavamusic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.03 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
{
"name": "lavamusic",
"version": "4.1.0",
"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 build && node dist/index.js",
"prisma:generate": "npx prisma generate",
"build": "tsc --project tsconfig.json",
"clean": "rm -rf dist",
"lint": "eslint . --cache --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --cache --ext .js,.jsx,.ts,.tsx",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/appujet/lavamusic.git"
},
"keywords": [
"discord",
"music",
"bot",
"lavalink",
"shoukaku",
"lavamusic",
"typescript",
"prisma"
],
"author": "blacky",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/appujet/lavamusic/issues"
},
"homepage": "https://github.com/appujet/lavamusic#readme",
"devDependencies": {
"@types/node": "^20.12.7",
"@types/signale": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^52.0.0",
"prettier": "^3.2.5",
"prisma": "^5.12.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"dependencies": {
"@prisma/client": "^5.12.1",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"shoukaku": "^4.0.1",
"signale": "^1.4.0",
"tslib": "^2.6.2",
"undici": "^6.13.0"
},
"signale": {
"displayScope": true,
"displayBadge": true,
"displayDate": true,
"displayFilename": true,
"displayLabel": true,
"displayTimestamp": true,
"underlineLabel": true
}
}