2019-09-13 20:02:41 +00:00
|
|
|
{
|
|
|
|
"name": "esmbot",
|
2022-02-16 18:42:25 +00:00
|
|
|
"version": "1.7.2",
|
2019-09-13 20:02:41 +00:00
|
|
|
"description": "A Discord bot with miscellaneous features",
|
2021-08-19 14:19:14 +00:00
|
|
|
"exports": "./app.js",
|
2021-12-30 20:27:18 +00:00
|
|
|
"bin": "./app.js",
|
2021-08-19 14:19:14 +00:00
|
|
|
"type": "module",
|
2019-09-13 20:02:41 +00:00
|
|
|
"engines": {
|
2021-01-04 16:29:18 +00:00
|
|
|
"node": ">=15"
|
2019-09-13 20:02:41 +00:00
|
|
|
},
|
2020-02-17 22:21:24 +00:00
|
|
|
"scripts": {
|
2021-12-31 04:45:32 +00:00
|
|
|
"build": "cmake-js compile",
|
2021-05-14 02:56:14 +00:00
|
|
|
"docker:build": "docker build -t esmbot -f Dockerfile.bot .",
|
|
|
|
"docker:build-api": "docker build -t esmbot-api -f Dockerfile.api .",
|
2021-05-11 03:59:19 +00:00
|
|
|
"docker:run-bot": "docker run --rm --network=host esmbot",
|
2020-09-26 16:23:27 +00:00
|
|
|
"docker:run-api": "docker run --rm --network=host esmbot-api",
|
|
|
|
"docker:run-lava": "docker run --rm --network host -v \"$(pwd)\"/application.yml:/opt/Lavalink/application.yml -v \"$(pwd)\"/assets:/opt/Lavalink/assets fredboat/lavalink:dev",
|
|
|
|
"start": "node app.js"
|
2020-02-17 22:21:24 +00:00
|
|
|
},
|
2019-09-29 03:32:43 +00:00
|
|
|
"author": "Essem <essem@essem.space>",
|
2019-09-13 20:02:41 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-09-01 22:10:19 +00:00
|
|
|
"url": "git+https://github.com/esmBot/esmBot.git"
|
2019-09-13 20:02:41 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-04-21 18:35:06 +00:00
|
|
|
"@top-gg/sdk": "^3.1.1",
|
2021-12-31 04:45:32 +00:00
|
|
|
"cmake-js": "^6.3.0",
|
2021-03-05 18:06:22 +00:00
|
|
|
"cowsay2": "^2.0.4",
|
2022-02-02 17:01:33 +00:00
|
|
|
"dotenv": "^15.0.0",
|
2021-11-20 06:55:25 +00:00
|
|
|
"emoji-regex": "^10.0.0",
|
2021-12-03 00:12:42 +00:00
|
|
|
"eris": "^0.16.1",
|
2022-01-23 05:16:55 +00:00
|
|
|
"eris-fleet": "^1.0.0",
|
2022-02-02 17:01:33 +00:00
|
|
|
"file-type": "^17.1.1",
|
2021-08-06 20:39:04 +00:00
|
|
|
"format-duration": "^1.4.0",
|
2022-01-13 01:47:36 +00:00
|
|
|
"jsqr": "^1.3.1",
|
2020-06-27 17:18:26 +00:00
|
|
|
"lavacord": "^1.1.9",
|
2022-02-02 17:01:33 +00:00
|
|
|
"node-addon-api": "^4.3.0",
|
2020-06-18 19:02:35 +00:00
|
|
|
"node-emoji": "^1.10.0",
|
2022-02-02 17:01:33 +00:00
|
|
|
"node-fetch": "^3.2.0",
|
2022-01-13 01:47:36 +00:00
|
|
|
"qrcode": "^1.4.4",
|
2022-01-29 21:04:41 +00:00
|
|
|
"sharp": "^0.29.3",
|
2021-07-05 13:14:52 +00:00
|
|
|
"winston": "^3.3.3"
|
2019-09-13 20:02:41 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
Class commands, improved sharding, and many other changes (#88)
* Load commands recursively
* Sort commands
* Missed a couple of spots
* missed even more spots apparently
* Ported commands in "fun" category to new class-based format, added babel eslint plugin
* Ported general commands, removed old/unneeded stuff, replaced moment with day, many more fixes I lost track of
* Missed a spot
* Removed unnecessary abort-controller package, add deprecation warning for mongo database
* Added imagereload, clarified premature end message
* Fixed docker-compose path issue, added total bot uptime to stats, more fixes for various parts
* Converted image commands into classes, fixed reload, ignore another WS event, cleaned up command handler and image runner
* Converted music/soundboard commands to class format
* Cleanup unnecessary logs
* awful tag command class port
* I literally somehow just learned that you can leave out the constructor in classes
* Pass client directly to commands/events, cleaned up command handler
* Migrated bot to eris-sharder, fixed some error handling stuff
* Remove unused modules
* Fixed type returning
* Switched back to Eris stable
* Some fixes and cleanup
* might wanna correct this
* Implement image command ratelimiting
* Added Bot token prefix, added imagestats, added running endpoint to API
2021-04-12 16:16:12 +00:00
|
|
|
"@babel/eslint-parser": "^7.13.8",
|
|
|
|
"@babel/eslint-plugin": "^7.13.0",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.13.0",
|
2021-11-20 06:55:25 +00:00
|
|
|
"eslint": "^8.2.0",
|
2022-02-02 17:01:33 +00:00
|
|
|
"eslint-plugin-unicorn": "^40.1.0"
|
2019-12-05 16:58:46 +00:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2021-07-02 04:42:12 +00:00
|
|
|
"better-sqlite3": "^7.4.1",
|
2019-12-05 16:58:46 +00:00
|
|
|
"bufferutil": "^4.0.1",
|
2020-03-14 23:03:45 +00:00
|
|
|
"erlpack": "github:abalabahaha/erlpack",
|
2020-12-18 02:32:19 +00:00
|
|
|
"pg": "^8.5.1",
|
2020-11-17 14:52:12 +00:00
|
|
|
"uuid": "^8.3.1",
|
2021-11-20 06:55:25 +00:00
|
|
|
"ws": "^8.2.3",
|
2019-12-05 16:58:46 +00:00
|
|
|
"zlib-sync": "^0.1.6"
|
2019-09-13 20:02:41 +00:00
|
|
|
}
|
|
|
|
}
|