diff options
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/package.json b/package.json index 08e7915..1c06269 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,16 @@ { "name": "package", - "version": "7.2.0", - "description": "", + "version": "7.3.0", + "description": "A Discord bot that supports audio playback, fun commands, utilities, and soundsboard, and more to come!", "main": "./dist/app.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "run": "supervisor ./dist/app.js" + "build": "tsc -p tsconfig.json && npm run copy:all", + "start": "npm run start:prod", + "start:debug": "supervisor ./dist/app.js", + "start:prod": "node dist/app.js", + "copy:assets": "cpx './src/assets/**/**/*' './dist/assets'", + "copy:cache": "cpx './src/Cache/*' './dist/Cache'", + "copy:all": "concurrently \"npm:copy:assets\" \"npm:copy:cache\"" }, "author": "sin", "license": "MIT", @@ -15,7 +20,6 @@ "body-parser": "^1.19.0", "btc-value": "^3.0.1", "culturedtext": "^1.2.0", - "demojijs": "^1.2.0", "discord.js": "github:discordjs/discord.js", "discord.js-commando": "github:discordjs/Commando", "dogeify-js": "^1.2.0", |