discord-optimizer
Version:
Reduce Discord.js bot RAM usage with automatic optimization and restart capabilities
53 lines • 1.26 kB
JSON
{
"name": "discord-optimizer",
"version": "0.1.0",
"description": "Reduce Discord.js bot RAM usage with automatic optimization and restart capabilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ajauish/discord-optimizer.git"
},
"bugs": {
"url": "https://github.com/ajauish/discord-optimizer/issues"
},
"scripts": {
"build": "tsc",
"dev": "nodemon --exec ts-node src/index.ts",
"test": "jest --detectOpenHandles --forceExit",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"example": "ts-node examples/basic-usage.ts"
},
"keywords": [
"discord",
"discordjs",
"memory",
"optimization",
"ram",
"bot",
"performance"
],
"author": "Abdullah Jauish <abdullah@jauish.com>",
"license": "MIT",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"peerDependencies": {
"discord.js": "^14.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.5.0",
"nodemon": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"dependencies": {
"discord.js": "^14.0.0"
}
}