-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.51 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.51 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
{
"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.12",
"axios": "^1.13.2",
"date-fns": "^4.1.0",
"discord-player": "^7.1.0",
"discord.js": "^14.25.1",
"ffmpeg-static": "^5.3.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": "^25.0.3",
"@types/os-utils": "^0.0.4",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"nodemon": "^3.1.11",
"prettier": "^3.7.4",
"ts-node": "^10.9.2"
}
}