-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
68 lines (68 loc) · 1.78 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
59
60
61
62
63
64
65
66
67
68
{
"name": "volcano",
"version": "2.0.0-test-3",
"description": "A light-weight LavaLink compatible replacement",
"main": "dist/index.js",
"type": "module",
"scripts": {
"compile": "tsup",
"start": "node --enable-source-maps --optimize_for_size .",
"create-release": "node ./scripts/release.js",
"auth-gen": "node ./scripts/auth-gen.js",
"dep-report": "node ./scripts/generateDependencyReport.js",
"lint": "eslint . --ext .ts"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AmandaDiscord/Volcano.git"
},
"keywords": [
"discord",
"voice",
"lavalink",
"light-weight",
"modular",
"volcano"
],
"author": "PapiOphidian",
"license": "MIT",
"dependencies": {
"@discordjs/opus": "^0.8.0",
"@discordjs/voice": "^0.14.0",
"@lavalink/encoding": "^0.1.2",
"backtracker": "^3.3.2",
"ffmpeg-static": "^5.1.0",
"html-entities": "^2.3.3",
"m3u8stream": "^0.8.6",
"music-metadata": "^8.1.1",
"node-html-parser": "^6.1.4",
"play-dl": "^1.9.6",
"prism-media": "^1.3.4",
"sodium-native": "^3.4.1",
"twitch-m3u8": "github:AmandaDiscord/twitch-m3u8#ba927b26fb3c5cb118d75c20f990c5cce8a1ae7a",
"volcano-sdk": "github:AmandaDiscord/VolcanoSDK#c9195e6891ec641ec9a9da3e7cb87a47fa6f8033",
"ws": "^8.12.0",
"yaml": "^2.2.1",
"ytmusic-api": "^4.1.0"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"lavalink-types": "1.0.3",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"files": [
"./dist",
"./plugins",
"./LICENSE",
"./README.md"
]
}