-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
55
56
{
"name": "kellerus",
"version": "2.1.0",
"description": "General Discord-Bot",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "eslint ./src --ext .ts --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts --exec npm run dev:start",
"start": "node ."
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/scorixear/kellerus.git"
},
"keywords": [
"discord",
"bot"
],
"author": "Paul Keller",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/scorixear/kellerus/issues"
},
"homepage": "https://github.com/scorixear/kellerus#readme",
"dependencies": {
"@discordjs/opus": "^0.8.0",
"@discordjs/rest": "^1.0.0",
"@discordjs/voice": "^0.11.0",
"discord-api-types": "^0.36.3",
"discord.js": "^14.0.3",
"discord.ts-architecture": "^1.0.10",
"dotenv": "^16.0.1",
"ffmpeg-static": "^5.0.2",
"mariadb": "^3.0.1",
"sodium": "^3.0.2",
"spotify-playback-sdk-node": "^1.0.2",
"ytdl-core": "^4.11.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^10.1.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
}
}