-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.25 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.25 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
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
77
78
79
80
81
82
83
84
{
"name": "soundy",
"version": "3.4.4",
"description": "A powerful music bot built with Seyfert and lavalink-client to play high quality music in your Discord server for free.",
"author": {
"name": "Kiyomi Fujiwara",
"url": "https://github.com/idMJA"
},
"license": "AGPL-3.0",
"homepage": "https://github.com/idMJA/Soundy",
"repository": {
"type": "git",
"url": "https://github.com/idMJA/Soundy"
},
"bugs": {
"url": "https://github.com/idMJA/Soundy/issues"
},
"type": "module",
"main": "src/index.ts",
"engines": {
"bun": ">=1.2.0"
},
"scripts": {
"start": "dotenvx run -- bun run src/index.ts",
"dev": "dotenvx run -- bun run --watch src/index.ts",
"encrypt": "dotenvx encrypt",
"build": "tsup",
"format": "biome check --write ./src",
"lint": "tsc --noEmit && biome lint --write ./src",
"db:generate": "dotenvx run -- drizzle-kit generate",
"db:migrate": "dotenvx run -- drizzle-kit migrate",
"db:studio": "dotenvx run -- drizzle-kit studio",
"db:push": "dotenvx run -- drizzle-kit push",
"db:local:generate": "drizzle-kit generate --config=drizzle.config.local.ts",
"db:local:push": "drizzle-kit push --config=drizzle.config.local.ts"
},
"lint-staged": {
"*.ts": [
"bun format"
]
},
"dependencies": {
"@dotenvx/dotenvx": "^1.52.0",
"@elysiajs/cors": "^1.4.1",
"@elysiajs/jwt": "^1.4.0",
"@elysiajs/openapi": "^1.4.14",
"@libsql/client": "^0.17.0",
"@top-gg/sdk": "^3.1.6",
"axios": "^1.13.2",
"drizzle-orm": "^0.45.1",
"elysia": "^1.4.22",
"genius-lyrics": "^4.4.7",
"jsonwebtoken": "^9.0.3",
"lavalink-client": "^2.9.6",
"lowdb": "^7.0.1",
"seyfert": "^4.2.3-dev-22289628969.0",
"yunaforseyfert": "^1.1.3"
},
"devDependencies": {
"@biomejs/biome": "^2.3.12",
"@types/bun": "^1.3.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.10",
"drizzle-kit": "^0.31.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"trustedDependencies": [
"@biomejs/biome",
"esbuild"
],
"keywords": [
"discord",
"bot",
"music",
"lavalink",
"seyfert",
"typescript",
"discord-bot",
"music-bot"
]
}