-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "yt-bot",
"version": "4.0.0-alpha-2",
"description": "Youtube bot for discord",
"type": "commonjs",
"scripts": {
"start": "node dist/index.js",
"build": "rimraf dist && tsc",
"format": "prettier --write \"src/**/*.ts\"",
"dev": "cross-env NODE_ENV=development ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/googlefan256/yt-bot.git"
},
"author": "Googlefan256 (https://googlefan.net/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/googlefan256/yt-bot/issues"
},
"homepage": "https://github.com/googlefan256/yt-bot#readme",
"devDependencies": {
"@types/yt-search": "^2.10.3",
"cross-env": "^7.0.3",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=16.0.0"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"@discordjs/voice": "^0.16.1",
"chalk": "^4.1.2",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"ffmpeg-static": "^5.2.0",
"opusscript": "^0.0.8",
"play-dl": "^1.9.7",
"tweetnacl": "^1.0.3",
"yt-search": "^2.10.4",
"ytdl-core": "^4.11.5"
}
}