-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
50 lines (50 loc) · 1.51 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
{
"name": "melody",
"description": "Discord music bot with many useful commands and effects.",
"version": "2.0.1",
"author": "NerdyTechy",
"license": "ISC",
"main": "src/index.ts",
"private": true,
"homepage": "https://github.com/NerdyTechy/Melody#readme",
"bugs": {
"url": "https://github.com/NerdyTechy/Melody/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NerdyTechy/Melody.git"
},
"scripts": {
"dev": "ts-node --files src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"format": "prettier --write \"**/*.{js,ts,md}\"",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix"
},
"dependencies": {
"@distube/ytdl-core": "^4.16.0",
"axios": "^1.7.9",
"date-fns": "^4.1.0",
"discord-player": "^7.1.0",
"discord.js": "^14.17.3",
"ffmpeg-static": "^5.2.0",
"https-proxy-agent": "^7.0.6",
"mediaplex": "^1.0.0",
"ms": "^2.1.3",
"os-utils": "^0.0.14",
"play-dl": "^1.9.7"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/ms": "^2.1.0",
"@types/node": "^22.13.1",
"@types/os-utils": "^0.0.4",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.20.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"ts-node": "^10.9.2"
}
}