-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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": "fork-window-music",
"version": "1.0.0",
"description": "music bot for a small discord server",
"main": "index.js",
"scripts": {
"lint": "eslint . --fix",
"build": "tsc --project tsconfig.json",
"start": "node --enable-source-maps dist/index.js",
"test": "tsc --project tsconfig.json && node --enable-source-maps dist/index.js"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boomermath/bop-js.git"
},
"keywords": [
"discord",
"bot",
"music"
],
"author": "boomermath",
"license": "ISC",
"bugs": {
"url": "https://github.com/boomermath/bop-js/issues"
},
"homepage": "https://github.com/boomermath/bop-js#readme",
"dependencies": {
"@discordjs/opus": "^0.5.3",
"@discordjs/voice": "^0.6.0",
"@distube/soundcloud": "^0.2.2",
"@distube/spotify": "^0.6.4",
"chalk": "^4.1.2",
"discord.js": "^13.2.0",
"distube": "^3.0.0-beta.39",
"dotenv": "^10.0.0",
"ffmpeg-static": "^4.4.0",
"libsodium-wrappers": "^0.7.9"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"typescript": "^4.4.3"
}
}