diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/package.json b/package.json index 0b03fca..7da3554 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,11 @@ { "name": "shulker", - "version": "2.0.0", + "version": "2.1.0", "description": "A Discord to Minecraft Chat Gateway", - "main": "index.js", + "main": "build/index.js", "scripts": { - "start": "node index.js", + "start": "node build/index.js", + "build": "tsc", "test": "standard" }, "repository": { @@ -22,13 +23,18 @@ }, "homepage": "https://github.com/destruc7i0n/shulker#readme", "dependencies": { - "axios": "^0.18.0", - "discord.js": "^11.4.2", + "axios": "^0.19.2", + "discord.js": "^11.5.1", "emoji-strip": "^1.0.1", - "express": "^4.16.4", - "tail": "^2.0.1" + "express": "^4.17.1", + "tail": "^2.0.3" }, "devDependencies": { - "standard": "^12.0.1" + "@types/emoji-strip": "^1.0.0", + "@types/express": "^4.17.2", + "@types/tail": "^2.0.0", + "standard": "^14.3.1", + "tslint-config-standard": "^9.0.0", + "typescript": "^3.7.5" } } |