-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.55 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mikaela",
"version": "1.0.0",
"description": "Mikaela is DiscordBot who can help make your server a more vibrant place to be in, she plays music, saves members favorites, those who like to debate can even organize their notes and sources with her help.",
"main": "out/app.js",
"license": "MIT",
"author": {
"name": "Kira",
"email": "[email protected]"
},
"private": true,
"keywords": [
"discord",
"music",
"debate",
"typescript",
"bot"
],
"homepage": "https://github.com/kira0x1/mikaela#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kira0x1/mikaela.git"
},
"bugs": {
"url": "https://github.com/kira0x1/mikaela/issues"
},
"scripts": {
"start": "node .",
"start-prod": "node . --env=production",
"skipdb": "node . --skipDB",
"testvc": "node . --testvc",
"prebuild": "npm run clean",
"build": "tsc",
"watch": "tsc -w",
"watch:node": "nodemon .",
"clean": "rimraf out",
"clean:node": "rimraf 'node_modules/!(rimraf|.bin)'",
"clean:all": "npm run clean && npm run clean:node",
"prettier": "prettier --write **.ts",
"lint": "eslint . --ext .ts",
"voiceReport": "node scripts/dependancyReport.js"
},
"dependencies": {
"@discordjs/opus": "^0.8.0",
"@discordjs/voice": "^0.10.0",
"agenda": "^4.3.0",
"bufferutil": "^4.0.6",
"discord.js": "^13.8.1",
"dotenv": "^16.0.1",
"ffmpeg-static": "^5.0.2",
"isomorphic-unfetch": "^3.1.0",
"minimist": "^1.2.6",
"moment": "^2.29.4",
"mongoose": "^6.5.2",
"ms": "^2.1.3",
"sodium": "^3.0.2",
"spotify-uri": "^3.0.2",
"spotify-url-info": "^3.1.4",
"string-progressbar": "^1.0.4",
"tslib": "^2.4.0",
"utf-8-validate": "^5.0.9",
"winston": "^3.8.1",
"ws": "^8.8.1",
"yt-search": "^2.10.3",
"ytdl-core": "4.10.0",
"ytpl": "^2.3.0"
},
"devDependencies": {
"@types/ms": "^0.7.31",
"@types/node": "^18.7.6",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-alloy": "^4.6.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"nodemonConfig": {
"events": {
"start": "cls || clear"
},
"delay": 500
}
}