-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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": "lemon-soda",
"version": "0.1.0",
"description": "A simple music bot",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./build",
"build": "tsc --build",
"start": "node ./build/index.js",
"style": "npx prettier . --write && npx eslint --config eslint.config.mjs .",
"deploy-commands": "tsx scripts/deploy-commands.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tromai/lemon-soda.git"
},
"author": "Trong Nhan Mai",
"license": "MIT",
"bugs": {
"url": "https://github.com/tromai/lemon-soda/issues"
},
"homepage": "https://github.com/tromai/lemon-soda#readme",
"dependencies": {
"@discord-player/extractor": "^4.5.0",
"@discordjs/opus": "^0.9.0",
"@spotify/web-api-ts-sdk": "^1.2.0",
"discord-player": "^6.7.1",
"discord-player-youtubei": "^1.2.6",
"discord-voip": "^0.1.3",
"discord.js": "^14.15.3",
"youtube-ext": "^1.1.25"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.16.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
}
}