-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
{
"name": "trufabot",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "npm run typecheck",
"test:smoke": "node scripts/music-playlist-smoke-test.mjs",
"verify": "npm run test && npm run build && npm run test:smoke",
"dev": "tsx src/index.ts",
"clean": "rimraf dist",
"build": "npm run clean && tsc -p tsconfig.json",
"start": "node dist/src/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"commands:register": "tsx scripts/register-commands.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@discordjs/voice": "^0.19.0",
"@distube/spotify": "^2.0.2",
"@distube/youtube": "^1.0.4",
"@distube/yt-dlp": "^2.0.1",
"@snazzah/davey": "^0.1.9",
"discord.js": "^14.25.1",
"distube": "^5.2.3",
"dotenv": "^17.3.1",
"opusscript": "^0.0.8",
"pino": "^10.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}