Add splash banner and spinner progress for initial connection

This commit is contained in:
Max Isom 2021-12-13 20:11:14 -05:00
parent fa4ba0bb9a
commit ffc8493ea3
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
5 changed files with 169 additions and 9 deletions

View file

@ -2,7 +2,7 @@
"name": "muse",
"version": "0.1.0",
"description": "🎧 a self-hosted Discord music bot that doesn't suck ",
"exports": "./dist/index.js",
"exports": "./dist/src/index.js",
"repository": "git@github.com:codetheweb/muse.git",
"author": "Max Isom <hi@maxisom.me>",
"license": "MIT",
@ -22,9 +22,9 @@
"clean": "rm -rf dist dts",
"test": "npm run lint",
"build": "tsc",
"watch": "tsc --watch",
"build:watch": "tsc --watch",
"prepack": "npm run clean && npm run build",
"start": "node dist/index.js",
"start": "node --experimental-json-modules dist/src/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 ."
},
@ -90,6 +90,8 @@
"libsodium-wrappers": "^0.7.9",
"make-dir": "^3.1.0",
"node-emoji": "^1.10.0",
"nodesplash": "^0.1.1",
"ora": "^6.0.1",
"p-event": "^4.2.0",
"p-limit": "^4.0.0",
"p-queue": "^7.1.0",