-
-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.76 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
{
"name": "music-disc",
"version": "4.1.3",
"description": "Discord Music Bot",
"main": "./src/index.ts",
"type": "module",
"scripts": {
"start": "npm run build && node ./dist/src/index.js",
"start:server": "npm run build:server && node ./dist/src/index.js",
"build": "npm run build:dashboard && npm run build:server",
"build:server": "tsc",
"build:dashboard": "cd dashboard && npm run generate",
"install:dashboard": "cd dashboard && npm install",
"dev": "tsc --noEmit --incremental false && tsx ./src/index.ts",
"lint": "eslint . --color",
"typecheck": "npx tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmes98318/Music-Disc.git"
},
"author": "hmes98318",
"license": "MIT",
"bugs": {
"url": "https://github.com/hmes98318/Music-Disc/issues"
},
"homepage": "https://github.com/hmes98318/Music-Disc#readme",
"overrides": {
"esbuild": "^0.28.1"
},
"dependencies": {
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.10.1",
"cookie": "^1.1.1",
"discord.js": "~14.26.4",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"i18next": "^26.3.1",
"i18next-fs-backend": "^2.6.6",
"lavashark": "^2.3.2",
"undici": "^8.4.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^25.9.3",
"eslint": "^10.5.0",
"globals": "^17.6.0",
"tsx": "^4.22.4",
"typescript": "~6.0.3",
"typescript-eslint": "^8.61.0"
},
"engines": {
"node": ">=22.22.3"
}
}