mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-10 03:55:29 +01:00
70a55e9a2e
(Strict mode in TS 4.4 enables useUnknownInCatchVariables, so this is redundant.)
109 lines
3 KiB
JSON
109 lines
3 KiB
JSON
{
|
|
"name": "muse",
|
|
"version": "0.1.0",
|
|
"description": "🎧 a self-hosted Discord music bot that doesn't suck ",
|
|
"exports": "./dist/index.js",
|
|
"repository": "git@github.com:codetheweb/muse.git",
|
|
"author": "Max Isom <hi@maxisom.me>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"types": "dts/types",
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"dts"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint 'src/**/*.ts'",
|
|
"lint:fix": "eslint 'src/**/*.ts' --fix",
|
|
"clean": "rm -rf dist dts",
|
|
"test": "npm run lint",
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"prepack": "npm run clean && npm run build",
|
|
"start": "node dist/index.js",
|
|
"dev": "concurrently nodemon 'tsc --watch'",
|
|
"docker-publish": "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 -t codetheweb/muse:latest --push ."
|
|
},
|
|
"devDependencies": {
|
|
"@types/bluebird": "^3.5.35",
|
|
"@types/debug": "^4.1.5",
|
|
"@types/fluent-ffmpeg": "^2.1.17",
|
|
"@types/fs-capacitor": "^2.0.0",
|
|
"@types/node": "^16.11.6",
|
|
"@types/node-emoji": "^1.8.1",
|
|
"@types/spotify-web-api-node": "^5.0.2",
|
|
"@types/validator": "^13.1.4",
|
|
"@types/ws": "^8.2.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.31.1",
|
|
"@typescript-eslint/parser": "^4.31.1",
|
|
"concurrently": "^6.4.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-xo": "^0.38.0",
|
|
"eslint-config-xo-typescript": "^0.44.0",
|
|
"husky": "^4.3.8",
|
|
"nodemon": "^2.0.7",
|
|
"ts-node": "^10.4.0",
|
|
"type-fest": "^2.5.4",
|
|
"typescript": "^4.4.3"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"xo",
|
|
"xo-typescript/space"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"rules": {
|
|
"new-cap": "off",
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"@typescript-eslint/no-unused-vars-experimental": "error",
|
|
"@typescript-eslint/prefer-readonly-parameter-types": "off",
|
|
"@typescript-eslint/no-implicit-any-catch": "off"
|
|
}
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm test && yarn build"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@discordjs/opus": "^0.7.0",
|
|
"@discordjs/voice": "^0.7.5",
|
|
"@types/libsodium-wrappers": "^0.7.9",
|
|
"array-shuffle": "^2.0.0",
|
|
"debug": "^4.3.1",
|
|
"delay": "^5.0.0",
|
|
"discord.js": "^13.3.0",
|
|
"dotenv": "^8.5.1",
|
|
"fluent-ffmpeg": "^2.1.2",
|
|
"fs-capacitor": "^7.0.1",
|
|
"get-youtube-id": "^1.0.1",
|
|
"got": "^11.8.2",
|
|
"hasha": "^5.2.2",
|
|
"inversify": "^5.1.1",
|
|
"iso8601-duration": "^1.3.0",
|
|
"libsodium-wrappers": "^0.7.9",
|
|
"make-dir": "^3.1.0",
|
|
"node-emoji": "^1.10.0",
|
|
"p-event": "^4.2.0",
|
|
"p-limit": "^3.1.0",
|
|
"p-queue": "^7.1.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"sequelize": "^6.11.0",
|
|
"sequelize-typescript": "^2.1.1",
|
|
"spotify-uri": "^2.2.0",
|
|
"spotify-web-api-node": "^5.0.2",
|
|
"sqlite3": "^5.0.2",
|
|
"xbytes": "^1.7.0",
|
|
"youtube.ts": "^0.2.2",
|
|
"ytdl-core": "^4.9.1",
|
|
"ytsr": "^3.5.3"
|
|
}
|
|
}
|