mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-12 21:05:29 +01:00
Bump dependencies
This commit is contained in:
parent
7fcd9a6a7d
commit
58fcc481ba
3611
package-lock.json
generated
Normal file
3611
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
44
package.json
44
package.json
|
@ -25,25 +25,25 @@
|
|||
"docker-publish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t codetheweb/muse:latest --push ."
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bluebird": "^3.5.30",
|
||||
"@types/bluebird": "^3.5.32",
|
||||
"@types/debug": "^4.1.5",
|
||||
"@types/fluent-ffmpeg": "^2.1.14",
|
||||
"@types/fs-capacitor": "^2.0.0",
|
||||
"@types/node": "^13.9.5",
|
||||
"@types/node": "^14.0.6",
|
||||
"@types/node-emoji": "^1.8.1",
|
||||
"@types/spotify-web-api-node": "^4.0.1",
|
||||
"@types/validator": "^12.0.1",
|
||||
"@types/ws": "^7.2.3",
|
||||
"@typescript-eslint/eslint-plugin": "^2.25.0",
|
||||
"@typescript-eslint/parser": "^2.25.0",
|
||||
"eslint": "^6.8.0",
|
||||
"@types/validator": "^13.0.0",
|
||||
"@types/ws": "^7.2.4",
|
||||
"@typescript-eslint/eslint-plugin": "^3.0.2",
|
||||
"@typescript-eslint/parser": "^3.0.2",
|
||||
"eslint": "^7.1.0",
|
||||
"eslint-config-xo": "^0.29.1",
|
||||
"eslint-config-xo-typescript": "^0.27.0",
|
||||
"husky": "^4.2.3",
|
||||
"nodemon": "^2.0.2",
|
||||
"eslint-config-xo-typescript": "^0.29.0",
|
||||
"husky": "^4.2.5",
|
||||
"nodemon": "^2.0.4",
|
||||
"reflect-metadata": "^0.1.13",
|
||||
"ts-node": "^8.8.1",
|
||||
"typescript": "^3.8.3"
|
||||
"ts-node": "^8.10.2",
|
||||
"typescript": "^3.9.3"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": [
|
||||
|
@ -67,30 +67,30 @@
|
|||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@discordjs/opus": "^0.1.0",
|
||||
"@discordjs/opus": "^0.3.2",
|
||||
"array-shuffle": "^1.0.1",
|
||||
"debug": "^4.1.1",
|
||||
"delay": "^4.3.0",
|
||||
"discord.js": "^12.1.1",
|
||||
"discord.js": "^12.2.0",
|
||||
"dotenv": "^8.2.0",
|
||||
"fluent-ffmpeg": "^2.1.2",
|
||||
"fs-capacitor": "^6.1.0",
|
||||
"fs-capacitor": "^6.2.0",
|
||||
"get-youtube-id": "^1.0.1",
|
||||
"got": "^10.7.0",
|
||||
"got": "^11.1.4",
|
||||
"hasha": "^5.2.0",
|
||||
"inversify": "^5.0.1",
|
||||
"iso8601-duration": "^1.2.0",
|
||||
"make-dir": "^3.0.2",
|
||||
"make-dir": "^3.1.0",
|
||||
"node-emoji": "^1.10.0",
|
||||
"p-limit": "^2.2.2",
|
||||
"sequelize": "^5.21.5",
|
||||
"p-limit": "^2.3.0",
|
||||
"sequelize": "^5.21.11",
|
||||
"sequelize-typescript": "^1.1.0",
|
||||
"spotify-uri": "^2.0.0",
|
||||
"spotify-web-api-node": "^4.0.0",
|
||||
"sqlite3": "^4.1.1",
|
||||
"sqlite3": "^4.2.0",
|
||||
"unique-random-array": "^2.0.0",
|
||||
"youtube.ts": "^0.1.3",
|
||||
"ytdl-core": "^2.0.1",
|
||||
"ytsr": "^0.1.12"
|
||||
"ytdl-core": "^2.1.5",
|
||||
"ytsr": "^0.1.14"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,5 +21,5 @@ const spotify = container.get<Spotify>(TYPES.Lib.Spotify);
|
|||
|
||||
await sequelize.sync({});
|
||||
|
||||
bot.listen();
|
||||
await bot.listen();
|
||||
})();
|
||||
|
|
2
src/packages.d.ts
vendored
2
src/packages.d.ts
vendored
|
@ -11,7 +11,7 @@ declare module 'ytsr' {
|
|||
items: VideoResult[];
|
||||
}
|
||||
|
||||
export default function (search: string, options: object): Promise<SearchResult>;
|
||||
export default function (search: string, options: Record<string, unknown>): Promise<SearchResult>;
|
||||
}
|
||||
|
||||
declare module 'array-shuffle' {
|
||||
|
|
Loading…
Reference in a new issue