-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.53 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
{
"name": "discord-music-bot",
"version": "0.0.2",
"description": "Discord Music Bot",
"license": "MIT",
"main": "dist/index.js",
"author": "Christianto Chen",
"homepage": "https://github.com/christiantochen/discord-music-bot.git#readme",
"keywords": [
"discordjs",
"typescript",
"discord",
"bot",
"music bot"
],
"repository": {
"type": "git",
"url": "git+https://github.com/christiantochen/discord-music-bot.git"
},
"bugs": {
"url": "https://github.com/christiantochen/discord-music-bot/issues"
},
"scripts": {
"build": "tsc -p .",
"build:clean": "git clean -d -x -e node_modules -e .env -f && npm run build",
"build:watch": "tsc -p . --watch",
"start": "node ./dist/index.js",
"dev": "nodemon ./src/index.ts",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"lint:fix": "eslint . --ext .ts --ignore-path .gitignore --fix",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"postinstall": "npm run build"
},
"dependencies": {
"@discordjs/opus": "^0.8.0",
"@discordjs/rest": "^1.0.1",
"@discordjs/voice": "^0.11.0",
"discord.js": "^14.6.0",
"dotenv": "^16.0.1",
"ffmpeg-static": "^5.0.2",
"libsodium-wrappers": "^0.7.10",
"mongodb": "^4.10.0",
"play-dl": "^1.9.5"
},
"devDependencies": {
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"typescript": "^4.5.2"
},
"engines": {
"node": "16.14.0",
"npm": "8.3.1"
}
}