-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "jukebot",
"version": "3.2.0",
"private": true,
"main": "build/index.js",
"license": "MIT",
"author": {
"name": "NachoToast",
"url": "https://github.com/NachoToast"
},
"repository": {
"type": "git",
"url": "https://github.com/NachoToast/Jukebot.git"
},
"scripts": {
"start": "nodemon src/index.ts --devmode",
"build": "tsc --project tsconfig.build.json",
"lint": "eslint --ext .ts src --max-warnings=0",
"typecheck": "tsc --noEmit",
"test": "jest",
"check-all": "pnpm lint && pnpm typecheck && pnpm test",
"auth": "ts-node scripts/login.ts"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.1",
"dayjs": "^1.11.10",
"discord.js": "^14.14.1",
"play-dl": "^1.9.7",
"sodium-native": "^4.1.1"
}
}