-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.83 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
69
70
71
72
73
74
75
76
{
"name": "punk-bot",
"version": "1.0.6",
"description": "A discord music bot without limitations.",
"author": "Sascha Forster <[email protected]>",
"type": "module",
"main": "src/bot.ts",
"license": "GPL-3.0",
"keywords": [
"discord",
"bot",
"music",
"streaming",
"punk"
],
"files": [
"src/lib/*",
"src/commands/*",
"cli.sh"
],
"repository": "github:sasjafor/Announcer-Bot",
"bin": {
"run-punk-bot": "cli.sh"
},
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@discordjs/rest": "^2.4.2",
"@discordjs/voice": "^0.18.0",
"@distube/ytdl-core": "^4.16.0",
"axios": "^1.7.9",
"bufferutil": "^4.0.9",
"discord-api-types": "^0.37.119",
"discord.js": "^14.17.3",
"erlpack": "^0.1.4",
"execa": "^9.5.2",
"got": "^14.4.5",
"lodash.unescape": "^4.0.1",
"moment": "^2.30.1",
"play-dl": "^1.9.7",
"prism-media": "^1.3.5",
"sodium": "^3.0.2",
"type-fest": "^4.33.0",
"utf-8-validate": "^6.0.5",
"winston": "^3.17.0",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/preset-env": "^7.26.7",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/lodash.unescape": "^4.0.9",
"@types/tough-cookie": "^4.0.5",
"@types/youtube": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"babel-jest": "^29.7.0",
"eslint": "^9.19.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"source-map-support": "^0.5.21",
"typescript": "^5.7.3"
},
"overrides": {
"prism-media": {
"@discordjs/opus": "^0.10.0"
}
},
"scripts": {
"build": "tsc -p .",
"lint:all": "npx eslint .",
"test": "jest",
"coverage": "jest --coverage",
"prepare": "husky install"
}
}