diff options
| author | 8cy <[email protected]> | 2020-04-21 08:57:17 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-21 08:57:17 -0700 |
| commit | fadd61caf6e06be4cccae4e43487f309d2e74f10 (patch) | |
| tree | 2d15a1f841acae0decd5214c1afb570eaa206c65 /package.json | |
| parent | web back to worker, v7.2.5 (diff) | |
| download | dep-core-fadd61caf6e06be4cccae4e43487f309d2e74f10.tar.xz dep-core-fadd61caf6e06be4cccae4e43487f309d2e74f10.zip | |
move assets around, v7.3.0
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", |