-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
49
50
51
52
53
54
{
"name": "tunenekosync",
"version": "1.0.2",
"description": "MusicBot",
"main": "index.js",
"engines": {
"node": ">=18.x"
},
"scripts": {
"test": "ts-node src/index.ts",
"start": "npm run compile && node build/index.js",
"compile": "tsc -p .",
"format": "prettier . --write",
"lint": "npm run format && eslint .",
"deploy:slash": "npm run compile && node ./build/deploy-commands.js"
},
"author": {
"name": "MotiCAT",
"email": "[email protected]",
"url": "https://profile.moticat.net"
},
"license": "MIT",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.1",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"ffmpeg-static": "^5.2.0",
"tweetnacl": "^1.0.3",
"youtube-sr": "^4.3.10",
"ytdl-core": "^4.11.5"
},
"repository": {
"type": "git",
"url": "https://github.com/MotiCAT/TuneNekoSync.git"
},
"contributors": [
{
"name": "Nich87",
"email": "[email protected]",
"url": "https://VoidHacker.com"
}
]
}