{ "name": "muse", "version": "0.1.0", "description": "🎧 a self-hosted Discord music bot that doesn't suck ", "main": "dist/index.js", "repository": "git@github.com:codetheweb/muse.git", "author": "Max Isom ", "license": "MIT", "private": true, "types": "dts/types", "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": "nodemon", "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/debug": "^4.1.5", "@types/fluent-ffmpeg": "^2.1.14", "@types/fs-capacitor": "^2.0.0", "@types/node": "^13.9.1", "@types/spotify-web-api-node": "^4.0.1", "@types/validator": "^12.0.1", "@types/ws": "^7.2.2", "@typescript-eslint/eslint-plugin": "^2.24.0", "@typescript-eslint/parser": "^2.24.0", "eslint": "^6.8.0", "eslint-config-xo": "^0.29.1", "eslint-config-xo-typescript": "^0.26.0", "husky": "^4.2.3", "nodemon": "^2.0.2", "reflect-metadata": "^0.1.13", "ts-node": "^8.6.2", "typescript": "^3.8.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" } }, "husky": { "hooks": { "pre-commit": "npm test && npm run build" } }, "dependencies": { "@discordjs/opus": "^0.1.0", "array-shuffle": "^1.0.1", "debug": "^4.1.1", "delay": "^4.3.0", "discord.js": "^12.0.2", "dotenv": "^8.2.0", "fluent-ffmpeg": "^2.1.2", "fs-capacitor": "^6.1.0", "got": "^10.6.0", "hasha": "^5.2.0", "inversify": "^5.0.1", "iso8601-duration": "^1.2.0", "make-dir": "^3.0.2", "node-emoji": "^1.10.0", "p-limit": "^2.2.2", "sequelize": "^5.21.5", "sequelize-typescript": "^1.1.0", "spotify-uri": "^2.0.0", "spotify-web-api-node": "^4.0.0", "sqlite3": "^4.1.1", "unique-random-array": "^2.0.0", "youtube.ts": "^0.1.1", "ytdl-core": "^2.0.0", "ytsr": "^0.1.11" } }