2019-09-13 20:02:41 +00:00
|
|
|
{
|
|
|
|
"name": "esmbot",
|
2021-06-26 21:09:47 +00:00
|
|
|
"version": "1.5.7",
|
2019-09-13 20:02:41 +00:00
|
|
|
"description": "A Discord bot with miscellaneous features",
|
|
|
|
"main": "app.js",
|
|
|
|
"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-02-19 16:29:59 +00:00
|
|
|
"build": "node-gyp configure build -j max",
|
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 .",
|
2020-09-26 16:23:27 +00:00
|
|
|
"docker:build-ss": "docker build -t headless-chrome-alpine --no-cache ./utils/screenshot",
|
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",
|
2020-09-10 02:36:20 +00:00
|
|
|
"docker:run-ss": "docker run --rm --network=host --shm-size=128m headless-chrome-alpine",
|
2020-09-26 16:23:27 +00:00
|
|
|
"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-03-05 18:06:22 +00:00
|
|
|
"cowsay2": "^2.0.4",
|
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
|
|
|
"dayjs": "^1.10.4",
|
2021-05-15 23:25:04 +00:00
|
|
|
"dotenv": "^9.0.2",
|
2021-03-05 18:06:22 +00:00
|
|
|
"emoji-regex": "^9.2.2",
|
2021-05-11 03:59:19 +00:00
|
|
|
"eris-sharder": "github:esmBot/eris-sharder#eris-dev",
|
2021-01-09 18:39:19 +00:00
|
|
|
"file-type": "^16.1.0",
|
2020-09-11 20:22:25 +00:00
|
|
|
"jsqr": "^1.3.1",
|
2020-06-27 17:18:26 +00:00
|
|
|
"lavacord": "^1.1.9",
|
2021-06-28 22:59:05 +00:00
|
|
|
"node-addon-api": "^3.2.1",
|
2020-06-18 19:02:35 +00:00
|
|
|
"node-emoji": "^1.10.0",
|
2020-09-12 08:19:11 +00:00
|
|
|
"node-fetch": "^2.6.1",
|
2019-11-15 16:59:50 +00:00
|
|
|
"qrcode": "^1.4.4",
|
2021-05-15 23:25:04 +00:00
|
|
|
"sharp": "^0.28.2"
|
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",
|
|
|
|
"eslint": "^7.23.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
|
|
|
"mongoose": "^5.11.8",
|
|
|
|
"pg": "^8.5.1",
|
2020-11-17 14:52:12 +00:00
|
|
|
"uuid": "^8.3.1",
|
2021-06-18 05:10:11 +00:00
|
|
|
"ws": "^7.5.0",
|
2019-12-05 16:58:46 +00:00
|
|
|
"zlib-sync": "^0.1.6"
|
2019-09-13 20:02:41 +00:00
|
|
|
}
|
|
|
|
}
|