forked from NerdyTechy/Melody
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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.13.5",
"axios": "^1.7.2",
"date-fns": "^3.6.0",
"discord-player": "^6.7.0",
"discord.js": "^14.15.3",
"ffmpeg-static": "^5.2.0",
"https-proxy-agent": "^7.0.5",
"mediaplex": "^0.0.9",
"ms": "^2.1.3",
"os-utils": "^0.0.14",
"play-dl": "^1.9.7"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/ms": "^0.7.34",
"@types/node": "^20.14.12",
"@types/os-utils": "^0.0.4",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"nodemon": "^3.1.3",
"prettier": "^3.3.3",
"ts-node": "^10.9.2"
}
}