-
-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "music-disc",
"version": "3.1.0",
"description": "Discord Music Bot",
"main": "./src/index.ts",
"type": "module",
"scripts": {
"start": "npm run build && node ./dist/src/index.js",
"build": "tsc",
"dev": "tsc --noEmit --incremental false && tsx ./src/index.ts",
"lint": "eslint . --ext .ts --color"
},
"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",
"dependencies": {
"body-parser": "^1.20.3",
"cookie": "^1.0.2",
"discord.js": "~14.18.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"i18next": "^24.2.2",
"i18next-fs-backend": "^2.6.0",
"lavashark": "^2.2.0",
"undici": "^7.4.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/express": "^4.17.21",
"@types/node": "^22.13.8",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"tsx": "^4.19.3",
"typescript": "~5.7.3",
"typescript-eslint": "^8.25.0"
},
"engines": {
"node": ">=22.12.0"
}
}