-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "music-start-pro",
"version": "1.3.1",
"description": "Music Start Pro is a discord bot that can play YouTube music by slash command.",
"keywords": [
"discord",
"YouTube",
"bot",
"music",
"ytdl"
],
"homepage": "https://github.com/ksw2000/Music-Start-Discord-Bot-Pro.git",
"repository": {
"type": "git",
"url": "https://github.com/ksw2000/Music-Start-Discord-Bot-Pro.git"
},
"dependencies": {
"@discordjs/voice": "^0.18.0",
"@distube/ytdl-core": "^4.15.1",
"@types/node": "^22.1.0",
"commander": "^12.1.0",
"discord.js": "^14.16.1",
"ffmpeg-static": "^5.1.0",
"opusscript": "^0.1.1",
"tweetnacl": "^1.0.3",
"yaml": "^2.6.0"
},
"bin": {
"ms": "dist/cli.js"
},
"scripts": {
"build": "npx tsc",
"start": "npx ts-node src/cli.ts -d",
"lint": "npx eslint src/**.ts --fix"
},
"author": "Kashiwa",
"license": "MIT",
"engines": {
"node": ">=17.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.17.0"
}
}